vote up 2 vote down star

If I press ctrl-b that ought to give me ASCII code 2, but ctrl-c is going to be interpreted as a Break.

So I figure I've got to redirect a file in. How do I get these characters into a file?

flag

67% accept rate

3 Answers

vote up 5 vote down check

Ctrl-V escapes the next keystoke. That's how you can get a Ctrl-C out: Ctrl-V Ctrl-C

link|flag
vote up 3 vote down
echo $'\002\003' > ./myfile
link|flag
vote up 1 vote down

perl -e 'print "\xFF"', where FF is the hex code of the ACSII code you want to print. So for ACSII code 2, it would be \x02.

link|flag

Your Answer

Get an OpenID
or

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