Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解touch在 Mac 中将 README 添加到 Github 存储库时使用的关键字。
touch
$ touch README
这会添加一个名为README. 那么触摸真正代表什么?例如,如果$ subl README-subl将启动 sublime 文本。
README
$ subl README
subl
touch 所做的只是更新文件的时间戳(如果文件存在),或者创建一个具有该名称的空文件。见http://ss64.com/bash/touch.html