Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. printf %s '101'
  2.  
  3. 101
  4.  
  5. In addition to the standard format specifications described in printf(1),
  6. printf interprets:
  7.  
  8. %b expand backslash escape sequences in the corresponding argument
  9.  
  10. $ printf "%bn" '101'
  11. A
  12.  
  13. $ awklib 'BEGIN {print std_chr(+base_convert(101, 8, 10))}'
  14. A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement