0
我想使用「Sed」實用程序提取字符串的第一部分。 grep和awk在環境中不可用。輸入是使用Sed提取部分字符串
「https://jintestexample.example.com/services/get/latest/accounts」。
我需要提取「/ services」之前的字符串。我只能使用sed。
你的幫助是非常讚賞 謝謝, 金
我想使用「Sed」實用程序提取字符串的第一部分。 grep和awk在環境中不可用。輸入是使用Sed提取部分字符串
「https://jintestexample.example.com/services/get/latest/accounts」。
我需要提取「/ services」之前的字符串。我只能使用sed。
你的幫助是非常讚賞 謝謝, 金
只是刪除/services
和任何如下:
echo "https://jintestexample.example.com/services/get/latest/accounts" \
| sed -e 's%/services.*%%'