Echo tab characters in bash script
چهارشنبه, ۲۳ تیر ۱۳۹۵، ۰۱:۳۸ ب.ظ
echo -e ' \t '
will echo 'space tab space newline' (-e
means 'enable interpretation of backslash escapes'):
$ echo -e ' \t ' | hexdump -C
00000000 20 09 20 0a
- ۹۵/۰۴/۲۳