标签: bash unix
大家好我需要在所有子目录的所有文件的末尾附加一个空格字符。我怎么能这样做?
答案 0 :(得分:2)
find . -type f -exec sed -i '${s/$/ /}' {} \;