如何在shell脚本中创建文件

发布于 2024-12-10 20:15:52 字数 154 浏览 0 评论 0原文

我需要编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江城子 2024-12-17 20:15:52
mkdir -p "`dirname $foo`"
touch "$foo"

dirname 适用于任意路径;它不检查路径是否正在使用(指向的文件是否存在)。

mkdir -p "`dirname $foo`"
touch "$foo"

dirname works on arbitrary paths; it doesn't check whether the path is in use (whether the file pointed to exists).

软甜啾 2024-12-17 20:15:52

为什么不将两者结合起来呢? mkdir -p /directories/.... &&触摸/目录/文件

Why not combine both? mkdir -p /directories/.... && touch /directories/file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文