You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awk '{s=0; for (i=1; i<=NF; i++) s=s+$i; print s}'
Find and replace in file
# Replace only first instance in line
awk '{sub(/HTML/, "html")}; 1' data.txt > data_new.txt
# Replace all instances in line
awk '{gsub(/HTML/, "html")}; 1' data.txt > data_new.txt