如何在shell脚本中创建文件
我需要编写一个 shell 脚本,从环境中读取变量。如果它指向的文件不存在,我想创建它。
该文件路径可能包含一些中间不存在的目录,因此也需要创建这些目录。所以 mkdir -p 在这里不起作用,简单的触摸在这里不起作用。
解决方法是什么?
谢谢!
I need to write a shell script where I read a variable from environment. If the file pointed by it doesn't exist, I want to create it.
This file path could contain some intermediate non-existent directories, so these also need to be created. So neither mkdir -p works here nor simple touch works here.
What is the workaround?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dirname
适用于任意路径;它不检查路径是否正在使用(指向的文件是否存在)。dirname
works on arbitrary paths; it doesn't check whether the path is in use (whether the file pointed to exists).为什么不将两者结合起来呢?
mkdir -p /directories/.... &&触摸/目录/文件
Why not combine both?
mkdir -p /directories/.... && touch /directories/file