当前位置: 技术问答>linux和unix
shell脚本里面,用什么指令删除字符串中子串
来源: 互联网 发布时间:2016-12-03
本文导语: shell脚本里面,用什么指令删除字符串中子串? 例如 字符串abcdefdg,子串efd,从abcdefdg中删除efd。谢谢 | echo "abcdefdg" | sed 's/efd//g'
shell脚本里面,用什么指令删除字符串中子串?
例如 字符串abcdefdg,子串efd,从abcdefdg中删除efd。谢谢
例如 字符串abcdefdg,子串efd,从abcdefdg中删除efd。谢谢
|
echo "abcdefdg" | sed 's/efd//g'