• forestbeasts@pawb.social
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    2
    ·
    edit-2
    4 hours ago

    (*wags tail at both PJ and Sam!!* =.=)

    yeah! Terminal’s super useful but also kind of daunting.

    If y’all haven’t seen the man pages, they make an excellent reference. Honestly, they’re basically written more as reference than as tutorial type stuff most of the time. So that’s there whenever your cheatsheet doesn’t cover something.

    Also we use zsh (without plugins, you don’t need plugins) and it’s got really fancy autocomplete. We can just type - and hit tab and get a list of all the options for that command (that zsh knows about; I don’t think it goes and reads man pages for you or anything like that). I can’t remember how you turn that on but I think it’s something you can do from zsh’s initial setup wizard. I don’t know if bash can do the same thing or not, I think probably not (but we’re not super up to date on bash).

    (I’d avoid fish, which you might also run into if you go looking for fancy features. It’s known for really fancy features but it’s also not compatible with normal shell scripts, which’ll screw you up if you ever want to get into scripting. zsh does normal shell script syntax (with the exception of protecting you if you forget to quote your variables) and also has really nice fancy features like the autocomplete.)

    – Frost