要获取到上一条命令的最后一个参数
[email protected]:/shell# ls /etc/hosts /etc/passwd /etc/hosts /etc/passwd [email protected]:/shell# echo $_ /etc/passwd
上面传输了两个参数
- /etc/hosts
- /etc/passwd
所以执行echo $_ 后就会输出/etc/passwd
时间: 2024-10-08 10:13:52
要获取到上一条命令的最后一个参数
[email protected]:/shell# ls /etc/hosts /etc/passwd /etc/hosts /etc/passwd [email protected]:/shell# echo $_ /etc/passwd
上面传输了两个参数
所以执行echo $_ 后就会输出/etc/passwd