Advertisement
binjuhor

Alias Bin

Mar 9th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1.  
  2. #Binjuhor - Alias config
  3. alias nginx.start='sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.nginx.plist'
  4. alias nginx.stop='sudo launchctl unload /Library/LaunchDaemons/homebrew.mxcl.nginx.plist'
  5. alias nginx.restart='nginx.stop && nginx.start'
  6. alias php-fpm.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php71.plist"
  7. alias php-fpm.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.php71.plist"
  8. alias php-fpm.restart='php-fpm.stop && php-fpm.start'
  9. alias mariadb.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mariadb.plist"
  10. alias mariadb.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mariadb.plist"
  11. alias mariadb.restart='mariadb.stop && mariadb.start'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement