gpt4 book ai didi

linux - 使用 awk 修改输出

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:12 25 4
gpt4 key购买 nike

我有一个给我输出的命令:

/home/konnor/md5sums:ea66574ff0daad6d0406f67e4571ee08  counted-file.xml.20131003-083611

我需要的输出是:

ea66574ff0daad6d0406f67e4571ee08  counted-file.xml

我得到的最接近的是:

$ echo /home/konnor/md5sums:ea66574ff0daad6d0406f67e4571ee08  counted-file.xml.20131003-083611 | awk '{ printf "%s", $1 }; END { printf "\n" }'

/home/konnor/md5sums:ea66574ff0daad6d0406f67e4571ee08

我不熟悉 awk,但我相信这是我想使用的命令,有人有什么想法吗?

最佳答案

或者只是一个 sed oneliner:

 echo /home/konnor/md5sums:ea66574ff0daad6d0406f67e4571ee08  counted-file.xml.20131003-083611 \
| sed -E 's/.*:(.*\.xml).*/\1/'

关于linux - 使用 awk 修改输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19164591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com