Linux

Linux Alt + ‘.’ 的等價物是什麼?在 MacOS 上?

  • October 11, 2019

我正在嘗試獲得與 Linux 相同的功能,其中最後一個參數可以輕鬆插入另一個命令。

如果您使用bashor zsh,則快捷方式的!$工作方式相同。

例如:

[user@localhost ~]$ echo "test" >> new_file
[user@localhost ~]$ cat !$
cat new_file
test

引用自:https://unix.stackexchange.com/questions/546209