How do I echo one or more tab characters using a bash script? When I run this code
res=' 'x # res = "\t\tx"
echo '['$res']' # expect [\t\tx]
I get this
res=[ x] # that is [<space>x]
|
|
will echo 'space tab space newline' (
|
|||||||||
|
|
Put your string between double quotes:
|
|||
|
|
|
Using echo to print values of variables is a common Bash pitfall. Reference link: |
|||||||
|
|
You can also try:
|
|||||
|
|
Use There are multiple different versions of the
For your example:
And now it's time for me to admit that
as kmkaplan wrote (two and a half years ago, I just noticed!). The problem with your original commands:
isn't with
|
|||
|
|
If you want to use
Alternatively, you can give to myscript.sh the execution permission, and then run the script.
|
||||
|
|