awk save to same file code example
Example: awk save to same file
#To store awk output in same command a temporary file muste be used.
awk '(PROGRAM)' file > tmp_file && mv tmp_file file
#To store awk output in same command a temporary file muste be used.
awk '(PROGRAM)' file > tmp_file && mv tmp_file file