• Buffman@lemmy.world
    link
    fedilink
    arrow-up
    115
    ·
    1 day 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
              ·
              47 minutes 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
                ·
                35 minutes 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

      • Barrymore@sh.itjust.works
        link
        fedilink
        arrow-up
        29
        arrow-down
        1
        ·
        1 day ago

        I’m gonna tie you too the radiator, and grep you in the mouth for decades, and decades, and decades!

      • queerlilhayseed@piefed.blahaj.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        18 hours ago

        It’s a command line tool, used to search and filter text. According to wikipedia it stands for “global regular expression print”, which I never knew til today. Essentially, you give it some input text and a regular expression, and grep outputs all the parts of the input that match the regular expression. For example, if I run the command cat server_logs.log | grep ERROR* on my server, grep will print out all the lines in server_logs.log that have the word “ERROR”, filtering out all the “WARN” and “INFO” logs.

        * The | character is called a pipe, and it’s used to pass the output of one command line utility to another. In this example, the command line tool cat prints out the entire text of the file server_logs.log, and that output is then passed as an input to the next utility, grep, who filters it and outputs the filtered result. Piping is unnecessary in this case; in fact I have heard it rather upsettingly referred to as cat abuse, but that’s how my fingers remember how to filter files so I thought I’d present it as I wrote it.