Hacker News new | ask | show | jobs
by justinsaccount 1729 days ago

  $ echo hel$'\x70'
  help
1 comments

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"