要获取到上一条命令的最后一个参数
root@ubuntu:/shell# ls /etc/hosts /etc/passwd/etc/hosts /etc/passwdroot@ubuntu:/shell# echo $_ /etc/passwd
上面传输了两个参数
/etc/hosts
/etc/passwd
所以执行echo $_ 后就会输出/etc/passwd
本文共 232 字,大约阅读时间需要 1 分钟。
要获取到上一条命令的最后一个参数
root@ubuntu:/shell# ls /etc/hosts /etc/passwd/etc/hosts /etc/passwdroot@ubuntu:/shell# echo $_ /etc/passwd
上面传输了两个参数
/etc/hosts
/etc/passwd
所以执行echo $_ 后就会输出/etc/passwd
转载于:https://blog.51cto.com/caimengzhi/1893836