定位命令输出有点乏味:
$ time locate etc/profile
/etc/profile
/etc/profile.d
/etc/profile.d/appmenu-qt5.sh
/etc/profile.d/apps-bin-path.sh
/etc/profile.d/bash_completion.sh
/etc/profile.d/cedilla-portuguese.sh
/etc/profile.d/jdk.csh
/etc/profile.d/jdk.sh
/etc/profile.d/vte-2.91.sh
real 0m0.696s
user 0m0.671s
sys 0m0.024s
我怎样才能给它更多的信息呢ll
?ls -la
也许也包括标题?
使用
xargs
和ls
:llocate
我为此目的创建了一个脚本:与常规命令
.76
相比,运行需要几秒钟。差异可以忽略不计。.70
locate
bash 脚本
bash 代码相当简单。将下面的脚本复制到目录中
/home/YOUR_NAME/bin
(您可能必须先创建它)或/usr/local/bin
使用以下命令将其标记为可执行:这是脚本
llocate
: