首页 > 代码库 > CUT AWK 字符串反转 rev
CUT AWK 字符串反转 rev
[root@localhost ~]# 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 命令反转字符串
[root@localhost ~]# 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。