I am running the following awk command to project the 1st and 15th columns from an input file to an output . The problem start when the output file is written with a space delimeter
awk -F "|" '{print $1,$15}' 1st_rm_text_from_transactions_22_7_14.plt > manual_memos_text_from_transactions_22_7_14.plt
How do I control the deilmeter (I need | ) in the output file ?
thanks