Which Linux command or utility is simple, powerful, and surprisingly unknown to many people or used less often?

This could be a command or a piece of software or an application.

For example I’m surprised to find that many people are unaware of Caddy, a very simple web server that can make setting up a reverse proxy incredibly easy.

Another example is fzf. Many people overlook this, a fast command-line fuzzy finder. It’s versatile for searching files, directories, or even shell history with minimal effort.

  • gandalf_der_12te@discuss.tchncs.de
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    4 days ago

    socat - connect anything to anything

    for example

    socat - tcp-connect:remote-server:12345

    socat tcp-listen:12345 -

    socat tcp-listen:12345 tcp-connect:remote-server:12345

  • Jumuta@sh.itjust.works
    link
    fedilink
    arrow-up
    84
    ·
    6 days ago

    I think a lot of people don’t realise that yt-dlp works for many sites, not just YouTube

    I used it recently for watching a video from tiktok without having to use their god awful web UI and it was amazing

    • GenderNeutralBro@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      28
      ·
      6 days ago

      Also works on Twitch with the added benefit of NOT playing ads (you still get breaks, just with a placeholder screen instead of the commercial).

      mpv has yt-dlp support built in, so it can just play the streams directly.

    • gnuhaut@lemmy.ml
      link
      fedilink
      arrow-up
      11
      ·
      5 days ago

      Since everyone keeps mentioning yt-dlp I gotta ask: what’s wrong with the original youtube-dl? I keep using it, it works, it’s still being updated.

    • Jumuta@sh.itjust.works
      link
      fedilink
      arrow-up
      20
      ·
      6 days ago

      I heard about helix from you and I’ve used it for a year and a half or so now, it’s by far the best editor I’ve used so far and I can definitely vouch for it

    • Trent@lemmy.ml
      link
      fedilink
      English
      arrow-up
      14
      ·
      6 days ago

      Just commenting to give more love to helix. It’s my favorite “small quick edits” editor.

      • Dessalines@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        5 days ago

        It does have clojure lsp support, but you’ll probably have to use a command line for most repls.

        • SFloss (they/them)@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          5 days ago

          Yeah the clojure lsp support is top notch, but there being no support for “jacking in” to a repl is the big thing keeping me from using helix full time. There’s a way of doing it if you use kitty, but it’s pretty janky.

      • deadcream@sopuli.xyz
        link
        fedilink
        arrow-up
        5
        ·
        6 days ago

        Fish is a replacement of bash that’s a bit more user friendly (has some cool auto completion features out of the box and more sane behaviour like handling of spaces when expanding variables). I personally started to use nutshell recently but unlike fish it’s very different from bash.

        Starship is a “prompt” for various shells (that bit of text in terminal before you enter the command that shows current user and directory in bash). I haven’t used it but AFAIK it has many features like showing current time, integration with git, etc.

        • Ephera@lemmy.ml
          link
          fedilink
          English
          arrow-up
          8
          ·
          6 days ago

          Yep, here’s my Starship prompt, for example:

          So, I have it configured to show:

          • the exit code of the last command (if it’s non-zero),
          • the duration of the last command (if it’s longer than 2 seconds),
          • the time (when the last command ended),
          • the current directory,
          • the current Git branch, and it also shows some Git status information, for example the $ means I have something stashed,
          • and finally the technology in use in a repository/directory, so in this case that repo uses Rust and the compiler version is 1.83.
            • Ephera@lemmy.ml
              link
              fedilink
              English
              arrow-up
              6
              ·
              5 days ago

              Oh, when you’re coding something in a Git repo and you realize that you need to make a different change before you continue coding (e.g. switch to a branch, pull newest changes, or just create a separate smaller commit for part of your change), then you can run git stash push to put away your current changes, then make your other change, and then run git stash pop to bring your ongoing changes back. I recommend reading git stash --help, if you want to use it.

              Sometimes, though, you might end up just taking it into a different direction altogether or simply forget that you had something stashed. That’s when that indicator comes in handy. Because while you can have multiple things stashed, I do find it’s best not to keep them around for too long. If you do want to keep them for longer, then you can always create a branch and commit it as WIP onto there, so that you can push it onto a remote repo.

    • communism@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      5 days ago

      Very useful for shell scripts that need to do maths as well. I use it to make percentages when stdout has values between 0.0 and 1.0

      • gens@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        4 days ago

        I once wrote a bc script that calculated parameters for the Blackman window for a FIR filter. (Had formulas already so not that impressive) Upped the precision until it needed like 30 sec to calculate, completely unnecessarely :).

  • toastal@lemmy.ml
    link
    fedilink
    arrow-up
    9
    ·
    4 days ago

    netstat -tunl shows all open ports on the machine to help diagnose any firewall issues.

    • kyub@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      7
      ·
      4 days ago

      netstat is kind of deprecated, ss is more modern (from the iproute2 package) and uses very similar parameters.

  • harsh3466@lemmy.ml
    link
    fedilink
    arrow-up
    23
    ·
    5 days ago

    zoxide. It’s a fabulous cd replacement. It builds a database as you navigate your filesystem. Once you’ve navigated to a directory, instead of having to type cd /super/long/directory/path, you can type zoxide path and it’ll take you right to /super/long/directory/path.

    I have it aliased to zd. I love it and install it on every system

    You can do things like using a partial directory name and it’ll jump you to the closest match in the database. So zoxide pa would take you to /super/long/directory/path.

    And you can do partial paths. Say you’ve got two directories named data in your filesystem.

    One at /super/long/directory/path1/data

    And the other at /super/long/directory/path2/data

    You can do zoxide path2 data and you’ll go to /super/long/directory/path2/data

      • JackbyDev@programming.dev
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        5 days ago

        Came here to say both of these things. (Awk and “> simple”.)

        To be totally honest, I don’t think awk is any more complicated than something like grep, it’s just that regular expressions get used more often so they’re typically more familiar. In the same way that programming languages with c-like syntax (like Java and C#) often feel easier than ones that don’t (like Haskell and Clojure).

  • DigitalDilemma@lemmy.ml
    link
    fedilink
    English
    arrow-up
    16
    ·
    5 days ago

    yes

    The most positive command you’ll ever use.

    Run it normally and it just spams ‘y’ from the keyboard. But when one of the commands above is piped to it, then it will respond with ‘y’. Not every command has a true -y to automate acceptance of prompts and that’s what this is for.