我正在尝试编写一个脚本,在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
答案 0 :(得分:2)
将命令括在反引号中`
:
`defaults read com.apple.finder AppleShowAllFiles`