This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# to wait for certain lines to excute | |
function pause(){ | |
read -p "$*" | |
} | |
#show hidden files | |
defaults write com.apple.finder AppleShowAllFiles YES | |
killall Finder |