Google Custom Search

2014/09/14

OSX移動,縮放視窗快速鍵

當外接大螢幕用爽爽拔掉後卻出現視窗莫名太大,按不到縮放也無法移動它怎麼辦?

the move window scripts use:
command, option, shift and the cursors.

The resize scripts use:
command, option, shift, control and the cursors.

The 'Remember Finder window position' script uses:
command, option, shift and enter.


網路找到的,居家出外必備良藥。

2014/09/02

Unix Like下一次修改特定目錄下所有的權限。

改變特定目錄下所有檔案,目錄權限
chmod -R 644 /home/username/public_html
改變特定目錄下所有檔案權限
cd /home/username/pulic_html
find . -type f -exec chmod 644 {} \;
改變特定目錄下所有目錄權限
cd /home/username/pulic_html
find . -type d -exec chmod 755 {} \;