Recent content by FisherPRic3

  1. F

    Merge two files based on similar line values.

    Same deal "awk: cmd. line:4: Unexpected token"
  2. F

    Merge two files based on similar line values.

    I get an "Unexpected token" on line 4 with this. Its well beyond my depth so im not sure what is wrong.
  3. F

    Merge two files based on similar line values.

    NVM. I figured that part out. it may be a little sloppy but i just run the merged file through the below sed commands. sed -E 's/\+\|\+-+//g' final | sed 's/||/|/g' this alters the merged file from what i posted above to this +---------------+--------------+--------------+ | Line...
  4. F

    Merge two files based on similar line values.

    This worked flawlessly, but something i hadn't considered was that there are rows in between and at the top and bottom that have "+" instead of "|" So Currently my output looks like this. +---------------+--------------+|+---------------+--------------+ | Line | Data || Data...
  5. F

    Merge two files based on similar line values.

    Hey everyone, I have a very specific goal in mind here and its possible that i may just end up needing a complicated script to accomplish this but please see below for my example. I have a script that produces some text similar to what you see below. | Line 1 | Data 1 | |...
Top