我有一个文件parse.txt
parse.txt包含以下内容
remo/hello/1.0,remo/hello2/2.0,remo/hello3/3.0,whitney/hello/1.0,julie/hello/2.0,julie/hello/3.0
并且我想使用parse.txt将output.txt文件作为(从最后到第一个顺序)
julie/hello/3.0,remo/hello/1.0
我已经尝试了以下代码:
tail -r parse.txt
你可以使用这个awk命令:
原文链接:https://www.f2er.com/bash/386361.htmlawk -v RS=,'{a[++i]=$1} END{for (k=i; k>=1; k--) printf a[k] (k>1?RS:ORS)}' parse.txt julie/hello/3.0,remo/hello/1.0