repo.or.cz
/
build-config.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
trim
[build-config.git]
/
src
/
config
/
lxrgmr-code
/
test
/
token
/
3.2.TranslationChar.in
blob
87cb2abf3cd354854c53a27a75f4d9b7b305039b
1
2
#
3
# @ '\n'
4
# @ '\r'
5
# @ '\f'
6
# @ '\v'
7
# @ '\t'
8
# @ '\x00'
9
#
10
11
echo $'abc\n'
12
13
echo $'abc\r'
14
15
echo $'abc\f'
16
17
echo $'abc\v'
18
19
echo $'abc\txxx'
20
21
echo $'abc\x0d\x0a\x30\x30'