我试图获得与 Linux 上相同的功能,其中最后一个参数可以轻松插入到另一个命令中。
答案1
如果您使用bash
或zsh
,则快捷方式!$
的工作方式相同。
例如:
[user@localhost ~]$ echo "test" >> new_file
[user@localhost ~]$ cat !$
cat new_file
test
我试图获得与 Linux 上相同的功能,其中最后一个参数可以轻松插入到另一个命令中。
如果您使用bash
或zsh
,则快捷方式!$
的工作方式相同。
例如:
[user@localhost ~]$ echo "test" >> new_file
[user@localhost ~]$ cat !$
cat new_file
test