我想使用" Sed"提取字符串的第一部分。效用。 grep和awk在环境中不可用。输入是
" https://jintestexample.example.com/services/get/latest/accounts"
我需要在" / services"之前提取字符串。我只能使用sed。
非常感谢您的帮助 谢谢, 金
答案 0 :(得分:1)
只需删除/services
及其后的内容:
echo "https://jintestexample.example.com/services/get/latest/accounts" \
| sed -e 's%/services.*%%'