OS X Mavericks はもちろん、OS X Yosemite でも確認済み。
下記内容を、適当なテキストエディタに貼り付け、拡張子を .command にして保存してあげてください。
#!/bin/bash
# -------------------------------------------------- #
# Visible/Invisible switcher for OS X
# Copyright (C) 2014 tag. All rights reserved.
# -------------------------------------------------- #
status=`defaults read com.apple.finder AppleShowAllFiles`
if ${status}; then
defaults write com.apple.finder AppleShowAllFiles FALSE
else
defaults write com.apple.finder AppleShowAllFiles TRUE
fi
killall Finder
killall Terminal
# -------------------------------------------------- #
# Visible/Invisible switcher for OS X
# Copyright (C) 2014 tag. All rights reserved.
# -------------------------------------------------- #
status=`defaults read com.apple.finder AppleShowAllFiles`
if ${status}; then
defaults write com.apple.finder AppleShowAllFiles FALSE
else
defaults write com.apple.finder AppleShowAllFiles TRUE
fi
killall Finder
killall Terminal
仕上げにターミナル上で、先ほど保存したファイルに実行権限を付加 (+x) してあげれば終了です。
$ chmod +x filename.command
使い方は、保存したファイルをダブルクリックするだけ。
はじめて実行する場合 (まだエントリが書き込まれていない場合) には、2回実行しないと隠しファイルが表示されない可能性があります。
0 件のコメント :
コメントを投稿