I have a text file with 5 tab delineated columns, name, address etc I have a shell script menu in which one of the options is to view each row as tab delineated columns. I found a solution here
This works perfectly when input into the command line as
vagrant@pc0:/vagrant$ cat AddressBook.txt | column -ts $'\t'
However when I put it into the shell script, it no longer delineates by tab, and instead by the letter t. Can anybody tell me why this is happening and/or suggest a possible remedy? Cheers!