 |
awk / cut: Skip First Two Fields and Print the Rest of Line
awk / cut: Skip First Two Fields and Print the Rest of Line by Nix Craft on July 13, 2011 · 7 comments · LAST UPDATED July 13, 2011 ... #!/bin/bash _input= "/path/to/file.name.txt" while IFS= read-r line do cut-d ' '-f3-
www.cyberciti.biz |
 |