如何从 shell 字符串中删除最后一个字段
如何剪切此 shell 字符串中的最后一个字段
LINE="/string/to/cut.txt"
,使字符串看起来像这样
LINE="/string/to/"
提前致谢!
How to cut the last field in this shell string
LINE="/string/to/cut.txt"
So that the string would look like this
LINE="/string/to/"
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
就其价值而言,基于
cut
的解决方案:For what it's worth, a
cut
-based solution:我认为你可以使用“dirname”命令。它接受输入文件路径,删除文件名部分并返回路径。例如:
I think you could use the "dirname" command. It takes in input a file path, removes the filename part and returns the path. For example:
这将适用于现代 Bourne 版本,例如 Dash、BusyBox ash 等,以及后代,例如 Bash、Korn shell 和 Z shell。
或保留最后的斜杠:
This will work in modern Bourne versions such as Dash, BusyBox ash, etc., as well as descendents such as Bash, Korn shell and Z shell.
or to keep the final slash:
回显 $LINE | grep -o '.*/' 也有效。
echo $LINE | grep -o '.*/'
works too.