小技巧--不用中间文件,出去文件中的换行符。

利用vim的取代功能,并和Shell的管道相配合即可。

echo -e ':%s/\\n//g\n:wq'|vim -n filename.txt 2>/dev/null

randomness