Hacker News new | ask | show | jobs
by a1369209993 1731 days ago
> One day, Windows wouldn't let me type the letter p.

> It ended up being the last straw that pushed me to Ubuntu, and I've never looked back.

On Ubuntu, that would be:

  $ Q=$($(echo /usr/bin/*rintf) \\x70)
  $ echo hel$Q
  help
right?
1 comments

  $ echo hel$'\x70'
  help
Oh, neat. It's `echo hel$\x70` in my shell, but I didn't know bash had a similar mechanism.
even echo has it $ echo -e "hel\x70"