如何将这两个命令组合成单行命令

时间:2017-02-21 07:01:55

标签: bash csh

下面我有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"

1 个答案:

答案 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"