如何触摸多个文件,每个文件都有唯一的文件名,要从当前目录外部创建的文件。使用 Git Bash CLI
How to touch multiple files, each with unique filenames, files to be created from outside the current directory. Using Git Bash CLI
此触摸示例在当前工作目录中创建多个文件:
touch register.ejs secret.ejs
当我们在当前工作目录之外时如何获得相同的结果?
我试过这个例子,但没有创建第二个文件:
$ touch views/register.ejs secret.ejs
摸索了一下,搞定了。如果有没有重复文件路径的更短的方法请指教。感谢
touch views/register.ejs & touch views/secret.ejs
此触摸示例在当前工作目录中创建多个文件:
touch register.ejs secret.ejs
当我们在当前工作目录之外时如何获得相同的结果? 我试过这个例子,但没有创建第二个文件:
$ touch views/register.ejs secret.ejs
摸索了一下,搞定了。如果有没有重复文件路径的更短的方法请指教。感谢
touch views/register.ejs & touch views/secret.ejs