我尝试删除字符串中的部分路径,我得到了路径:
/path/to/file/drive/file/path/
我想删除的第一部分 /path/to/file/drive
和产生的输出:
file/path/
注意: 在 while 循环中有几个路径,所有路径中都有相同的 /path/to/file/drive
,但是我只是在寻找删除所需字符串时的“ how to”。
我找到了一些例子,但我无法让它们发挥作用:
echo /path/to/file/drive/file/path/ | sed 's:/path/to/file/drive:\2:'
echo /path/to/file/drive/file/path/ | sed 's:/path/to/file/drive:2'
\2
是字符串的第二部分,我显然做错了什么... ... 也许有更简单的方法?