Urdarlingisdead

HomeBrew

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