Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by brianbills21

  1. B

    How can use I awk to calculate the total number of records processed?

    I found this on gnu.org: The awk language has a for statement in addition to a while statement because a for loop is often both less work to type and more natural to think of. Counting the number of iterations is very common in loops. It can be easier to think of this counting as part of...
  2. B

    How can use I awk to calculate the total number of records processed?

    I get what you mean @Antero360 and thank you very much for your solution. But the solution must come from within the script itself. I'm thinking about using a variable like iterations and give it the ++ so that every time the script loops for printf of the value of srange, it increments...
  3. B

    How can use I awk to calculate the total number of records processed?

    Hi All, I would like to add several lines to the output of my script. Currently, the script behaves as outlined in the README.md file here. But the behavior I want to change it to is below: ./sample.sh -s 0-9 -c 0-3 -t samples.bin Ch0 Ch1 Ch2 Ch3 Sample 0...
Back
Top Bottom