Vipera1

Homebrew

Apr 22nd, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. **PRELIMINARY**
  2.  
  3. https://www.youtube.com/watch?v=FVKzUHCl3_A
  4.  
  5. // Install Xcode Tools:     xcode-select —install
  6. // Install Homebrew:        ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  7.  
  8. **CASK**
  9. //Install Cask              brew install cask
  10. List apps:                  brew search --casks
  11. Search apps:                brew search (discord)
  12. Install:                    brew cask install (discord)
  13. Update:                     brew cask upgrade
  14. Help:                       brew cask help
  15.  
  16.  
  17. **HTOP**
  18. //Install htop:             brew install htop
  19. Run:                        sudo htop
  20.  
  21.  
  22. **SPEEDTEST**
  23. //Install Speedtest         brew install speedtest-cli
  24. Run:                        speedtest-cli
  25.  
  26.  
  27. **YOUTUBE-DL**
  28. //Install youtube-dl:       brew install youtube-dl
  29. //Install ffmpeg:           brew install youtube-dl ffmpeg
  30. Download highest-res vid:   youtube-dl -f bestvideo+bestaudio ‘link’
  31. Help:                       youtube-dl --help
  32.  
  33. **IMAGEMAGICK**
  34. //Install ImageMagick:      brew install imagemagick
  35. Add border (sample):        convert testing.png -border 1x1 -bordercolor black result.png
  36. Resize (sample):            convert testing.png -resize 1920 (or x1080) example.png
  37. Add effect (sample):        convert testing.png -charcoal 2 example.png
  38. Change multiple (sample):   for file in *.png; do convert $file -resize 1920 small-$file; done
  39. Help:                       convert help
Add Comment
Please, Sign In to add comment