如何在Mac终端中别名/重新定义rm命令来执行rm -v


0

我需要查看删除的文件。所以,我要重新定义rmrm -v。能否请你帮忙?

Answers:


3

如果您的shell是sh,ksh,zsh或bash,那么添加

 alias rm='rm -v'

到适当的shell启动文件。

如果你的shell是csh或tcsh,那么添加

alias rm rm -v

到适当的shell启动文件。


0

您的默认shell将是bash,因此添加~/.profile如下内容:

alias rm='rm -v'


〜/ .profile是sh。- 对于bash使用〜/ .bash_profile(如果你没有〜/ .bash_profile那么〜/ .profile会起作用)
Mark

/ bin / sh on MacOS就是/ bin / bash --posix
tunecrew
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.