Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # show hidden files
  2. defaults write com.apple.finder AppleShowAllFiles YES; killall Finder
  3.  
  4. # hide hidden files
  5. defaults write com.apple.finder AppleShowAllFiles NO; killall Finder
  6.  
  7. # sort launchpad programms
  8. defaults write com.apple.dock ResetLaunchPad -bool true; killall Dock
  9.  
  10. # ssh tunnel connection
  11. autossh -M 0 -o 'ServerAliveInterval 30' -o 'ServerAliveCountMax 3' -f -N ssh_config_host_name
  12.  
  13. # ssh tunnel shutdown
  14. sudo killall ssh autossh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement