Show hidden files in Mac OSX
Answer:
To show all the files in Finder, you can open the terminal and type:
defaults write com.apple.finder AppleShowAllFiles TRUE
Then restart Finder
killall Finder
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Show hidden files in Mac OSX
Answer:
To show all the files in Finder, you can open the terminal and type:
defaults write com.apple.finder AppleShowAllFiles TRUE
Then restart Finder
killall Finder
Install bash completion for Mac OSX
Answer:
Bash completion (bash-complete) is a tool that allow you to auto complete commands and their arguments easily using the "tab" keys.
Firstly, make sure you have installed Homebrew, then
# brew install git bash-completion
And add the following lines in your ~/.bash_profile
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
Restart your terminal and now you can see the effect of bash complete by tabbing..
How to get the MD5 checksum of a file under Mac OSX
Answer:
To get the MD5 checksum of a file under Mac OSX, like the md5sum command in Linux, you can use:
# md5 my-file.zip
Import private key into Mac's KeyChain
Answer:
To import a private key e.g. key.p12 into your login keychain, use the command:
# security import key.p12 -k ~/Library/Keychains/login.keychain
How to set JAVA_HOME on OSX
Answer:
To set the JAVA_HOME environment variable on OSX, add the following line in your ~/.bash_profile
export JAVA_HOME=$(/usr/libexec/java_home)
That's all.