将 URL 更改为文件路径
我想根据 URL 路径生成文件路径。以下是网址,我想将其更改为下面给出的网址。
myurl="https://reports.company.com/users/clients/Daily/MonFile/"
/home/shantanu/company/reports.company.com/users/clients/Daily/MonFile/
前两个(/home/shantanu/)是我的主目录。
I want to generate a file path based on URL path. The following is the URL and I want to change it to the one given below.
myurl="https://reports.company.com/users/clients/Daily/MonFile/"
/home/shantanu/company/reports.company.com/users/clients/Daily/MonFile/
The first two (/home/shantanu/) is my home directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 sed,
示例:
Using sed,
Example:
在 AWK 中,您可以执行以下操作:
结果:
在 ideone 上运行
In AWK you may do:
Result:
Running on ideone