Didn’t know about auto populating search queries, abbreviations, string scripting, and using private mode.

  • SinTan1729
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 hours ago

    It’s perfect for daily interactive use, but terrible for scripting. I write almost all my scripts in bash, the only exceptions being convenience scripts for fish itself.

    • traceur301@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 hours ago

      I still work with bash scripts from fish (to interoperate with bash users), but it’s more like how I use python: the interpreter is specified either in the shebang or explicitly on the cli command invoking the script. It works quite well actually

    • Laser@feddit.org
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      3 hours ago

      Same, but I don’t think it was ever intended differently; I mean the word interactive is literally in the name. If you want portable scripts, use bash. For simple helpers, quickly define a function. If you feel your script becomes too long, use Python.

      • SinTan1729
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 hours ago

        Agree, although I’ve recently replaced the python usecase with Go. Almost as easy to write, but much faster and safer.

  • Fizz@lemmy.nz
    link
    fedilink
    arrow-up
    9
    ·
    8 hours ago

    I’m worried that I’ll get used to the quality of.life improvements and then I’ll make a dumb mistake using bash at work.

  • Gamma
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    1 day ago

    Scrubbing through the video, this hurts my soul

    echo $(echo $STRING | sed 's/World/Bash/')
    

    For variables bash has PE forms:

    echo ${STRING/World/Bash}
    

    I miss these too much when I try Fish.

  • Ephera@lemmy.ml
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    1 day ago

    I wish that string command and also their math command were just general-purpose utilities pre-installed on all systems.

    Tried to script something with sed the other day and was so confused why my regexes weren’t matching, until we realized you need to pass --regexp-extended to get modern-day regex.

    And then I later tried to calculate an average, which bc decided to round down, because it was presumably doing integer math. I actually ended up running python -c "print($total / $count)", because I could not be arsed to work out, if there was some flag to make bc work properly.

    I’m fine with these tools continuing to exist for legacy purposes, but I would like a modern replacement just about now.

    • Gamma
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 day ago

      string split/collect and similar can’t work unless its a builtin. The set foo ( ...... | string ... ) pattern couldn’t work if string was an external binary.

    • Gamma
      link
      fedilink
      English
      arrow-up
      6
      ·
      1 day ago

      I get annoyed by differences with (Ba|Z)sh when I try Fish, but nushell is so much its own thing that it’s fun.

    • Cris@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      1 day ago

      I’m glad you mentioned nushell (it sounds like) is a more poweruser thing. Someone recommended it in place of fish in another thread and I was curious to check it out, but it sounds like not at all what I want or need as a fish user and that saves me the trouble of trying to make heads or tails of a terminal tool I don’t understand

      But it looks like a cool project and I’m glad it exists for people like you! 😊

    • rozodru@social.vivaldi.net
      link
      fedilink
      arrow-up
      7
      arrow-down
      1
      ·
      2 days ago

      @HappyFrog @ruffsl you’re not insane. I think you’re a person that knows what they like and knows what works for them which is the beauty of Linux.

      Also I’ve never heard of nushell and now you’ve made me want to check it out!