2013-09-16

[MAC] 安裝 SVN Console Client

在 Mac 下面要安裝 svn console client 如教學網站
Where is svn on OS-X Mountain-Lion

1. 從Xcode 安裝 Command Line Tools.
 Xcode » Preferences » Downloads » Command Line Tools » Install.
2. edit .profile to set PATH to Xcode Path
vi .profile
PATH="${PATH}:/Applications/Xcode.app/Contents/Developer/usr/bin/"
source .profile

2013-09-11

[Linux] 使用 Tar 備份超過30天的指令

find . -mtime +30 | xargs tar -cvf mar_03.tar

Tar file and remove file
find . -mtime +30 | xargs tar -cvf mar_03.tar --remove-files