Turn the accent menu off!!
defaults write -g ApplePressAndHoldEnabled -bool false
defaults write -g ApplePressAndHoldEnabled -bool false
Very simple. chflags hidden [folder location] Manual says… The chflags utility modifies the file flags of the listed files as specified by the flags operand. Option hidden: hidden set the hidden flag [Hide item from GUI] There you have it.
How do you move certain files from yesterday to another directory? In current directory: [code] find . -type f -atime -1 -exec mv {} /newdirectory/ \; From "/olddirectory/": find /olddirectory/ -type f -atime -1 -exec mv {} /newdirectory/ \; [/code]
du -sk * | sort -nr | more