私はMacシェルスクリプトを初めて使用しますが、Macで隠しファイルの表示/非表示を切り替えるためにこれを書きました。(その後、自動化アプリケーションを実行)これは良い解決策ですか?
#!/bin/sh
view=$(defaults read com.apple.finder AppleShowAllFiles)
if [ "$view" = "1" ]
then
defaults write com.apple.finder AppleShowAllFiles -bool false
else
defaults write com.apple.finder AppleShowAllFiles -bool true
fi
killall Finder