EN VI
Posts (0)
Questions (3)
2024-03-12 23:00:12
Preliminary: All of the following assumes that the data are presented one item per line, without embedded newlines, and that all characters between newlines are significant. I'm trying to use command...
Tags: linux bash awk
2024-03-15 20:00:06
Use a 2-pass approach to identify the rows and columns that need to be printed in the first pass and then print them in the second pass, e.g. using any awk: $ cat tst.awk BEGIN { OFS = "\t" be...
2024-03-15 22:30:06
You may consider this solution that would with any version of awk: printf '%s\n' "${arr[@]}" | awk -F, ' { for(i=1; i
Tags: arrays bash awk

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login