echo on bash
#using -e option to use escape character
i=0
echo -e "\t$i" #\t is horizental tab on output
# \n is new line character
# \v is vertical character
###TIP####
# tab is on character
# to set tab character do
od -ta test.txt
This Weblog Just Created For Document Sysadmin Challenges
#using -e option to use escape character
i=0
echo -e "\t$i" #\t is horizental tab on output
# \n is new line character
# \v is vertical character
###TIP####
# tab is on character
# to set tab character do
od -ta test.txt