本質上我想要在this question中執行相反的操作。如何在bash中將輸出行換成引號?
我正在運行搜索,查找具有Windows行結尾的文件(\r\n
),因爲我想要remove them。
$ grep -URl ^M .
一些返回的文件有空格在其名稱:
./file name 1.txt
./file name 2.txt
爲了通過xargs
上它傳遞給另一個工具,我需要引用的行。我怎樣才能改變這種輸出,而不是:
"./file name 1.txt"
"./file name 2.txt"
可能重複的[xargs輸入涉及空格](http://stackoverflow.com/questions/16952744/xargs-input-involving-spaces) –