Schedule shutdown of Windows
shutdown.exe -s -t 60, the system will shut down in one minute. to make it one hour, just input shutdown.exe -s -t 3600 to cancel it, just open Run by…
shutdown.exe -s -t 60, the system will shut down in one minute. to make it one hour, just input shutdown.exe -s -t 3600 to cancel it, just open Run by…
http://corefonts.sourceforge.net/
find . -name ._* -print0 | xargs -0 rm -f learn from http://stackoverflow.com/questions/8680793/recursive-erase-hidden-files
http://deliciouscake-php.blogspot.hk/2013/08/cakephp-2x-tutorial-for.html note that I found apt-get poedit in ubuntu can’t run on my ubuntu server. I end up download a desktop mac version. Put “Configure::write(’Config.language’, ’chi’);” into your bootstrap.php File
http://www.nch.com.au/soundtap/index.html?gclid=CPGzpt6w-L4CFdWCvQodbzMAvg
https://openclipart.org/
to clean up all pending atq jobs for i in `atq | awk ’{print $1}’`;do atrm $i;done learn from http://unix.stackexchange.com/questions/53144/remove-all-at-jobs
good explain at Digital Ocean https://www.digitalocean.com/community/articles/how-to-use-rsync-to-sync-local-and-remote-directories-on-a-vps rsync -a dir1/ dir2 This is necessary to mean “the contents of dir1”. sync into dir2 This, mean the whole dir1 copied into dir2…
exec 1 min later: echo ’ls -l’ | at now + 1 min