我有一個命令:(BASH)如何刪除默認的「換行」操作員命令
find /etc -type f \(! -perm /o=w \) -exec /usr/bin/ls -hastl '{}' \; -exec /usr/bin/md5sum '{}' \; > somefile.log
和該命令將創建這樣的打印(我需要有沒有斷裂線):
...
4.0K -rw-r--r--. 1 root root 332 Oct 23 2012 /etc/xinetd.d/rsync
fd32314f3157aaf15712e6da7758060d /etc/xinetd.d/rsync
....
問題:什麼我必須添加到這個命令刪除新行操作來獲得這樣的結果:
(...) is '-rw-r--r--. 1 root root 332 Oct 23 2012'
...
4.0K (...) /etc/xinetd.d/rsync >> fd32314f3157aaf15712e6da7758060d /etc/xinetd.d/rsync
...
的問題不明確 –