下面我有2个有用的bash命令,但我想将它们组合在一起。 有可能吗?
find "$1" -type f -print0 | xargs -0 sha1sum -b
find "$1" -type f ! -iname '*thumbs.db*' -print0 | xargs -0 stat -c "%y %s %n"
答案 0 :(得分:0)
如果您想将其写入一行,您只需使用"&"组合命令。也许这就是你的意思:
find "$1" -type f -print0 | xargs -0 sha1sum -b & find "$1" -type f ! -iname '*thumbs.db*' -print0 | xargs -0 stat -c "%y %s %n"