如何在mac上的终端脚本中的if语句中使用命令?

时间:2013-05-07 13:44:20

标签: macos shell terminal finder

我正在尝试编写一个脚本,在Finder中显示和隐藏隐藏文件之间切换,但是我遇到了错误:

  

./ HiddenFileToggle:第1行:[defaults:command not found

if [defaults read com.apple.finder AppleShowAllFiles]
then
defaults write com.apple.finder AppleShowAllFiles TRUE
else
defaults write com.apple.finder AppleShowAllFiles FALSE
fi
killall Finder

1 个答案:

答案 0 :(得分:2)

将命令括在反引号中`

`defaults read com.apple.finder AppleShowAllFiles`