For me it’s: Testdisk (and Photorec) Caddy Netstat Dig Aria2

  • everett
    arrow-up
    8
    arrow-down
    0
    ·
    3 months ago
    link
    fedilink

    Too many options to remember and look up every time

    This is a good use case for shell aliases. If you can identify a few of your use cases, you can give each bundle of options its own command.

    • amanneedsamaidEnglish
      arrow-up
      7
      arrow-down
      0
      ·
      3 months ago
      link
      fedilink

      I do exactly this for downloading music, I aliased my preferred options to ‘yt-audio’

      • mFatOPEnglish
        arrow-up
        5
        arrow-down
        0
        ·
        3 months ago
        link
        fedilink

        Would you mind sharing your command?

        • amanneedsamaidEnglish
          arrow-up
          2
          arrow-down
          0
          ·
          2 months ago
          link
          fedilink

          This is what I use (with zsh):

          yt-audio() {
          	   yt-dlp --no-playlist -f 'ba' -x --audio-format mp3 $1
          }
          yt-audio-playlist() {
          	   yt-dlp -f 'ba' -x --audio-format mp3 $1
          }
          
          

          It takes the best quality available and downloads it to mp3.