2018年5月19日 星期六

[Linux] shell的一些組合技

問題:將資料pipe出來以後傳給touch當變數建立新檔案

作法:
1. $ some_command | sed 's/^/touch /' | sh -x
2. $ some_command | xargs -n 1 touch

參考資料: https://serverfault.com/questions/34606/looping-a-command-over-a-list-of-arguments-in-linux

沒有留言: