- Jun
- 223
- 0
How would I accomplish the following in TCC (taken from bash)?
The problem is the translation of '${\t}' which is required to result in the a LITERAL (0x9) tab character embedded in single quotes. In a first (naive?) attempt I tried to translate this into:
which - according to the help file should result in a literal tab character being inserted for ^t. As you will guess, this failed (like other attempts using "^t", `^t`, etc).
nickles
Code:
sqlite3 --separator '${\t}' SOME_DATABASE < SOME_SCRIPT
Code:
sqlite3 --separator '^t' ...
nickles