在 Mac OS 上创建空 txt 文件,无需先打开应用程序
有没有一种方法可以简单地在桌面上创建一个新文档,然后使用简单的快捷方式或脚本使用例如 textmate 打开它。我知道 MS Windows 中直接创建新的空 txt 文件的方法不适用于 Mac。 我正在寻找一种实现类似目标的方法。有什么想法吗?
Is there a way to simply create a new document e.g. on the Desktop and open it with e.g. textmate with a simple shortcut or script. I know that the MS Windows approach where you can just create a new empty txt file directly is not working for Mac.
I am looking for a method achieving something similar. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以在终端中编写:
或作为脚本:
You can write this in the terminal:
Or as a script:
替代文本 http://img64.imageshack.us/img64/2280/screenshot20100106at125.png
这使用 TextMate 的
mate
命令行帮助程序应用程序。如果未安装,请转到 TextMate >帮助>终端使用。
alt text http://img64.imageshack.us/img64/2280/screenshot20100106at125.png
This uses TextMate's
mate
command line helper application.If it's not installed, go to TextMate > Help > Terminal Usage.
使用
touch
创建空文件的 unix 方法怎么样?它可以在脚本中完成,然后传递给应用程序。
How about the unix approach of creating an empty file with
touch
?It could be done in a script, and passed to an application.
shell 上的传统方法是使用
touch
命令。但在任何编程语言中,您都可以通过打开带有 O_CREAT 标志的文件来运行外部程序来完成此操作:在 C 中:
在 Perl 中:
在 Tcl 中强>:
Traditional on the shell is to use the
touch
command. But in any programming language you can do it without running an external program by opening a file with the O_CREAT flag:in C:
in Perl:
in Tcl:
还有另一个用于创建新文件,您也可以用它创建自己的模板。只需在 AppStore 中搜索 NewDoc 即可。
There is another to create new files, you can also create your own templates with it. Just search for NewDoc in AppStore.
有一些第三方工具可以添加此类功能。我见过的最新的是 模板
There's a few third party tools that add that kind of functionality. The newest I've seen is Templates