自定义命令在终端中创建和打开多个文件

时间:2014-07-04 19:00:47

标签: macos shell command-line terminal command-line-arguments

我想知道是否有办法使用OSX 10.9.4使用自定义单行终端命令在终端中创建和打开多个文件。

喜欢$ makemore test.rb test2.rb

然后使用我的默认Sublime Text3

打开

我找到了自定义命令来创建和打开单个文件。

lazy()
{
touch $1
open $1
}

是否可以创建一些内容,然后打开多个文件?

  

P.S。感谢这个Stackoverflow问题,了解如何创建自定义命令来创建和打开单个文件。 How can I create and open a file from terminal with a single command?

1 个答案:

答案 0 :(得分:1)

lazy() { for x; do touch "$x"; open "$x"; done; }

然后用文件名列表调用它。