So, title says it all. The code is
If I run that in Konsole where $myFl and $myFlf are named Input.txt and InputF.txt (
) it produces the file expected.
When I have that exact same code but where the file names are variable as shown above I receive a 0kb file. Empty. Nada. Nothing.
I can't for the life of me figure why and no level of searching has revealed a clue.
Anyone!! Please Help!!
Code:
awk -F $'\t' '$6 != ""' $myFl >> $myFlf
Code:
awk -F $'\t' '$6 != ""' Input.txt >> InputF.txt
When I have that exact same code but where the file names are variable as shown above I receive a 0kb file. Empty. Nada. Nothing.
I can't for the life of me figure why and no level of searching has revealed a clue.
Anyone!! Please Help!!
Comment