[ Awk Commands ]

Example:

awk -F "\t" '{print $1 "/" $2}' in.txt

awk '{print $1"\t : " $2}' testdata3.txt

awk '{print "\t"$1"\t:\t" $2}' /home/pi/TestGcc/testdata3.txt

awk 'BEGIN{i=0}{print ++i,$0}' testdata3.txt

tabs -d 10
./awkscr testdata3.txt

awk -F "," 'BEGIN{ OFS="\t" } { print $1, $2, $3, $4, $5 }' Titan_AUDUSD15.csv

[ awkscr ]
#! /usr/bin/awk -f
BEGIN{
OFS="\t"
}
{
print( $1 , $2 , $3 , $4 , $5 )
}