使用Sed提取字符串的一部分

时间:2015-11-23 07:31:30

标签: sed extract

我想使用" Sed"提取字符串的第一部分。效用。 grep和awk在环境中不可用。输入是

" https://jintestexample.example.com/services/get/latest/accounts"

我需要在" / services"之前提取字符串。我只能使用sed。

非常感谢您的帮助 谢谢, 金

1 个答案:

答案 0 :(得分:1)

只需删除/services及其后的内容:

echo "https://jintestexample.example.com/services/get/latest/accounts" \
| sed -e 's%/services.*%%'