I've a file named xyz.csv which are comma separated.I'm trying to get the output where the 2nd column should have value "01", 50th column as "ABC" and the content of 80th column using nawk?
相关问题
- Why should we check WIFEXITED after wait in order
- UNIX Bash - Removing double quotes from specific s
- Split a .txt file based on content
- Using awk / sed to find and replace key value pair
- Filter ldapsearch with awk/bash
相关文章
- What's the difference between grep -r and -R
- Making new files automatically executable?
- Reverse four length of letters with sed in unix
- Extracting columns from text file using Perl one-l
- Problem with piping commands in C
- Ruby grep with line number
- Makefile and use of $$
- Shell Removing Tabs/Spaces
Could you please try following and let me know if this helps.
OR
If you are looking for 50th and 80th field's value should be
ABC
and you want to print current line then following may help you in same.