Esta linha:
echo $name'\t'$pftot'\t'$pfmit'\t'$pfgen'\t'$pfratio'\t'$ftot'\t'$fmit'\t'$fgen'\t'$fratio
terá o \t
inserido diretamente. Pode-se ver algo semelhante a partir de um prompt de shell via:
$ export name=hello; echo $name'\t'$name'\t'$name
hello\thello\thello
Se o eco for alterado para echo -e
, a saída terá guias:
$ export name=hello; echo -e $name'\t'$name'\t'$name
hello hello hello
A partir da página man no echo:
-e enable interpretation of backslash escapes
If -e is in effect, the following sequences are recognized:
\ backslash \a alert (BEL) \b backspace \c produce no further output \e escape \f form feed \n new line \r carriage return \t horizontal tab \v vertical tab