Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Unix awk
Name: Yoon Date: October 27, 2008 at 11:34:33 Pacific OS: Linux CPU/Ram: 8GB Product: IBM
Comment:
Hello all,
I cut specific cell(row=2, column=1) in my excel file and created new file using following script. awk -F"," 'NR ==2 {print $1}' file1.csv > file1_new.csv awk -F"," 'NR ==2 {print $1}' file2.csv > file2_new.csv
and so on....
The problem is that I have thousand files and I have to do the same procedure thousand times. How can I make this simple using loop command? Thanks in advance.
Summary: Hi how to filter this variable(or data)below into only numbers multiple of 0.02(i.e. 0.00, 0.02, 0.04, ...1.00) using awk (may be with printf) command?: input 0.80 0.71 0.72 ...
Summary: Need help with an Awk Table Asume a list of 10 employees and a tax rate of 10% Eg Jones €10 per hour 30 hrs per week Mc mahon €12 per hour 35 hrs per week How do I 1) create headings for Name, ...