linux上一些惯用,但网上不太容易找到的shell命令

linux上一些常用,但网上不太容易找到的shell命令

1 批量解压缩

ls 2015*.tar.bz2 | xargs -n1 tar jxvf

 

2 后台运行管道命令

nohup bash -c "cat aaa.txt | xargs -n1 host" &