xargs 平行化處理指令

Posted on Tue 19 July 2016 in note • Tagged with linux, xargs

直接先上範例

xargs -a data.txt -I % -P 0 bash -c "sleep 1; echo %"

我要解決的問題是,我有一個文字檔 data.txt,其內容是我要處理的資料,一行一筆 …


Continue reading