「Mac/Tips」の版間の差分

提供: dsk's note
移動: 案内検索
33行目: 33行目:
 
<pre>pbcopy < ファイル名</pre>
 
<pre>pbcopy < ファイル名</pre>
  
 +
===Macに喋らせる===
 +
<pre>say Everything should be as simple as it is, but not simpler.</pre>
 
[[Category:Mac]]
 
[[Category:Mac]]

2013年8月8日 (木) 13:31時点における版

メモリを解放する

du -sx / &> /dev/null & sleep 5 && kill $!

Finderの終了・再起動

Finderに終了項目を追加

defaults write com.apple.finder QuitMenuItem -bool YES

追加した終了項目を削除

defaults write com.apple.finder QuitMenuItem -bool NO

それぞれkillall Finderして、Finderを再起動する事で反映される。

Finderを再起動

killall Finder

不可視フォルダ、ファイル表示

defaults write com.apple.finder AppleShowAllFiles true
killall Finder

不可視フォルダ、ファイル非表示

defaults write com.apple.finder AppleShowAllFiles false
killall Finder

デフォルトに戻す

defaults delete com.apple.finder AppleShowAllFiles

Dockを再起動

killall Dock

ヘルプウィンドウを隠せるようにする

defaults write com.apple.helpviewer DevMode -bool true
defaults delete com.apple.helpviewer DevMode

カレントディレクトリをFinderで開く

open .

クリップボードにコピー

pbcopy < ファイル名

Macに喋らせる

say Everything should be as simple as it is, but not simpler.