Hi,
I am new to Linux and am trying to pull several lines from one file to modify them.
I have written a file table.txt...
I want to pull out column 3 of each line and loop through them all adding 500,000bp.
I know that i can use awk to call...
I am looking for suggestions on how i can modify the following to add an awk statement that pulls out each column but still allows me to loop?
Thanks :)
lesley
I am new to Linux and am trying to pull several lines from one file to modify them.
I have written a file table.txt...
Code:
[lg45@dev64-mgmt ~]$ cat table.txt Angiogenin 10 25793633 25815393 Alpha-actinin 28 7893500 7941168
I know that i can use awk to call...
Code:
[lg45@dev64-mgmt ~]$ awk '{print$3'} table.txt
Code:
[lg45@dev64-mgmt ~]$ for i in `cat table.txt`; do echo $i; done
lesley
Comment