2016年8月8日 星期一

find file and open with vi

http://askubuntu.com/questions/586047/how-to-open-a-found-file-with-vi-piping-find-output-to-vi
find /home/user -type f -name 'important'
 -exec vi {} \;
其中有說明..
-exec 後面接的是 要 exec 的命令,一直到 \; 符號為止。
而 {} 代表的是 前面 find 的結果。

沒有留言:

張貼留言