• Buffman@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    20 days ago

    unzip, strip, top, less, touch, finger, grep, mount, fsck, more, yes, fsck, fsck, fsck, umount, sleep.

            • oozynozh@sh.itjust.works
              link
              fedilink
              arrow-up
              1
              ·
              19 days ago

              bash uses $ character to indicate variables. for example, you can see your current environment variables with the env command. then to see a specific variable echo $var to print its value.

              scripts may call variables for a variety of reasons. one common case would be collecting information from the environment it’s running under to determine whether it’s compatible.

              • wonderingwanderer@sopuli.xyz
                link
                fedilink
                arrow-up
                1
                ·
                19 days ago

                Oh. Oh yeah, I have done that. Like for adding the date to a file name when I dump a terminal output to into a text file, or adding hit counts to a custom notification after running a scan on a cron job.

                I just use the character for that. It’s fine, can’t win them all, but it’s better than having it at the beginning of every command line for seemingly no reason