如何创建空的“图标\r”从 shell 脚本获取 .dmg 文件?

发布于 2024-09-29 23:37:58 字数 293 浏览 4 评论 0原文

从 shell 脚本中,我想为 Mac OS X 磁盘映像 (dmg) 创建空的“Icon\r”文件,以便查找器考虑到 .VolumeIcon.icns 图标文件;控制台不接受该死的 '\r' 字符:

touch Icon\r
ls Icon*

> Iconr

并且在尝试输入 'Icon\r'"Icon\r" 等时会发生其他情况,我无法让它接受“\r”作为文件名末尾所需的典型回车符。

知道如何输入吗?

谢谢

From shell script, I would like to create the empty 'Icon\r' file for a Mac OS X disk image (dmg), so as the .VolumeIcon.icns icon file is taken into account by the finder; the damn '\r' character is not accepted from the console:

touch Icon\r
ls Icon*

> Iconr

and other things happen when trying to type 'Icon\r', "Icon\r" etc., I can't achieve to make it accept "\r" as the typical carriage return required at the end of the file name.

Any idea how to type it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

你与昨日 2024-10-06 23:37:58

我假设文件名应该是五个字符,最后一个是回车符。在 bash 或 zsh 中:

touch 

或者您可以在 shell 中输入回车符: touch Icon Ctrl+V Ctrl +M 输入

Icon\r'

或者您可以在 shell 中输入回车符: touch Icon Ctrl+V Ctrl +M 输入

I assume the file name should be five characters, the last one being a carriage return. In bash or zsh:

touch 

Or you can type the carriage return in the shell: touch Icon Ctrl+V Ctrl+M Enter .

Icon\r'

Or you can type the carriage return in the shell: touch Icon Ctrl+V Ctrl+M Enter .

趴在窗边数星星i 2024-10-06 23:37:58
echo -e "Icon\\r" | xargs touch
echo -e "Icon\\r" | xargs touch
装纯掩盖桑 2024-10-06 23:37:58

在 bash 中,您可以打开引号并输入“Icon,然后在下一行(您的提示符应该是 > 字符)关闭引号。

In bash, you can open your quotes and type "Icon, then on the following line (your prompt should be a > character) close the quotes.

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