• @RomanRoy
    link
    172 years ago

    Okay, so cat is all I need, right?

    …right?

  • @[email protected]
    link
    fedilink
    72 years ago

    I feel like you can’t compare these tools without talking about cut. I personally never use awk, but cut and other coreutils can be used together to achieve much of the same

  • @[email protected]
    link
    fedilink
    English
    6
    edit-2
    2 years ago

    love cat -n, when working with csv files I often use a command like this to figure out which column I need:

    head -n1 file.csv | sed 's/,/\n/g' | cat -n

  • narshee
    link
    fedilink
    5
    edit-2
    2 years ago

    cat
    while read -r l; do echo "$l"; done <

    cat -e
    while read -r l; do echo "$l"$; done <

    cat -n
    n=0; while read -r l; do n="$((n+1))"; printf '%5d %s\n' "$n" "$l"; done <

    cat -b
    n=0; while read -r l; do [ -n "$l" ] && n="$((n+1))" && printf '%5d %s' "$n" "$l"; echo; done <

    • @[email protected]
      link
      fedilink
      32 years ago
      $ n=0; while read -r l; do n="$((n+1))" printf '    %d %s\n' "$n" "$l"; done < /etc/os-release 
          0 NAME="openSUSE Tumbleweed"
          0 # VERSION="20230619"
          0 ID="opensuse-tumbleweed"
       [...]
      
  • BarrierWithAshes
    link
    fedilink
    52 years ago

    for me it’s grep but i’m amazed how many searching tools there are on Linux. sed, grep, ripgrep, cat, find, walk, sor, locate, awk, etc.

  • @flimsyberry
    link
    42 years ago

    I’m not sure if I should laugh or cry here. I’ll leave it at this: Use the right tool for the job.

    • @[email protected]OP
      link
      fedilink
      62 years ago

      just trying to get a good mental model of when it’s reasonable to use tools like awk instead of simpler unix tools. also further confirming that sed is almost never the best tool except for substitutions.

      • @[email protected]
        link
        fedilink
        72 years ago

        Sed and awk have a lot of overlap. Another thing to consider is that neither might be the right choice if you are inside a bash script since spawning a new process in a tight loop can be very expensive and bash’s built-in regex operations can have much better performance in those situations.

        • @[email protected]OP
          link
          fedilink
          22 years ago

          That’s a good point. If I need something like a bash script I tend to stick to bash features as much as possible.

      • @Mount_Linux
        link
        42 years ago

        Ok, I would say… cat is mostly used for output of files, and concatenating files. sed and awk are good at reshaping the output of files or piped std input. They both require some time to learn, but it is worth going back to them.

  • ZachAR3
    link
    32 years ago

    Thanks for the info!

  • falsem
    link
    fedilink
    22 years ago

    I pretty much always use these commands unless I need regex or something. I think it’s a lot more maintainable by other people since awk and sed have their own unique syntax.