避免执行 Shell 内置命令
April 14, 2012 @ 03:31 PM
当外部程序与 Shell 内置命令同名时,在 Shell 中总是会优先执行其内置命令。以 time 为例:
% which -a time
time: shell reserved word
/usr/bin/time
我们想要执行的是 /usr/bin/time,当然可以带绝对路径来执行。除此之外,也可以在 time 前面添加 \(反斜杠)来避免 Shell 执行同名的内置命令。
% \time
Related Posts
- 将 Python 文档打包成 ePub 格式 » June 16, 2014
- Debian Jessie 切换 systemd » June 13, 2014
- 使用 Pure-FTPd 架设 FTP 服务 » May 9, 2014