gpt4 book ai didi

cut - 如何从命令 "uniq"中删除输出的前导空格?

转载 作者:行者123 更新时间:2023-12-05 01:46:22 27 4
gpt4 key购买 nike

[root@firstcentos scripts]# cat test1
00
00
01
01
00
00
02
02
03
aa
aa
aa
[root@firstcentos scripts]# cat test1 | uniq -c
2 00
2 01
2 00
2 02
1 03
3 aa
[root@firstcentos scripts]#

最佳答案

如果你想删除前导空格,只需将输出通过管道传输到 sed 即可:

uniq -c file | sed 's/^\s*//'

例子:

$ uniq -c file
2 00
2 01
2 00
2 02
1 03
3 aa
$ uniq -c file | sed 's/^\s*//'
2 00
2 01
2 00
2 02
1 03
3 aa

关于cut - 如何从命令 "uniq"中删除输出的前导空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36252664/

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