我有一个命令:
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
...