Mac 特有命令

最后更新:
阅读次数:
  • open
# -a 用指定应用打开指定文件
$ open -a /Applications/AppName.app /path/to/file.txt
$ open -a /Applications/Chrome.app ~/working/test.html
  • say
# Make your mac talk
$ say 'Hello Mac'

# say the contents of a file
$ say -f /path/to/file.txt
  • GetFileInfo
# 获取文件或目录的属性信息
$ GetFileInfo file.txt

# -d 获取文件的创建日期
$ GetFileInfo -d file.txt

# -m 获取文件最近一次修改的日期
$ GetFileInfo -m file.txt
  • SetFile
# -d 更改文件的创建日期
$ SetFile -d '12/12/2022 00:12:12' file.txt

# -m 更改文件最近一次修改的日期
$ SetFile -m '12/12/2022 00:12:12' file.txt