CUT   AWK 字符串反转 rev

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CUT   AWK 字符串反转 rev相关的知识,希望对你有一定的参考价值。

[[email protected] ~]# cat web.txt 

http://www.baidu.com/1.txt

http://www.baidu.com/1.txt

http://www.baidu.com/1.txt

http://map.baidu.com/1.txt

http://www.baidu.com/1.txt

http://www.baidu.com/1.txt

http://pan.baidu.com/1.txt

http://www.baidu.com/4.txt

http://pan.baidu.com/2.txt

1. 使用cut 命令取第一个字符

    cut -c1 web.txt


2. 使用awk取第一个字符

    awk -F "" ‘{print $1}‘  web.txt


3. 使用 rev 命令反转字符串

[[email protected] ~]# rev web.txt 

txt.1/moc.udiab.www//:ptth

txt.1/moc.udiab.www//:ptth

txt.1/moc.udiab.www//:ptth

txt.1/moc.udiab.pam//:ptth

txt.1/moc.udiab.www//:ptth

txt.1/moc.udiab.www//:ptth

txt.1/moc.udiab.nap//:ptth

txt.4/moc.udiab.www//:ptth

txt.2/moc.udiab.nap//:ptth


以上是关于CUT   AWK 字符串反转 rev的主要内容,如果未能解决你的问题,请参考以下文章

awk命令

Linux命令之反转文本rev

Shell工具cut/sed/awk/sort

7Shell工具 cut sed awk sort

shell小知识

Linux-文本工具