vote up 2 vote down star
1

Is there an escape sequence, such as \012 or something like that?

I want to append on ascii chars to a file using echo ?? >> file

flag

4 Answers

vote up 6 vote down check

Use

echo -e "\012"
link|flag
vote up 2 vote down

Duplicate of this question.

link|flag
Well, not exactly, this 7-bit ASCII control code '\n', not unicode. – vartec Mar 22 at 12:08
vote up -1 vote down

In the DOS command line enter EDIT, then to insert control characters use CTRL+P followed by the control character required.

For example

echo Ctrl-P ALT+013 > file
link|flag
vote up 3 vote down

If you care about portability, you'll drop echo and use printf(1):

printf '\012'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.