[shell]字符串处理

前端之家收集整理的这篇文章主要介绍了[shell]字符串处理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cut

echo "x:xx:xxx" | cut -d ":" -f 2


uniq

cat file0 | sort | uniq


awk

echo "x:xx:xxx" | awk -F ":" '{for(i=1;i<=NF;i++) print $i}'


sed


sed -i 直接修改读取的文件

sed -i '/s/原字符串/新字符串/g' 1.txt

原文链接:https://www.f2er.com/bash/390121.html

猜你在找的Bash相关文章