我有一个文件,我试图通过使用尾巴-f阅读。 我想知道是否有办法让terminal输出一个实际的换行符而不是\ n字符。
tail -f file | sed 's/\\n/\n/g'
tail -1 file | awk '{gsub(/\\n/,"")}1'