save awk to same file code example
Example: save awk 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