代码搜索结果
找到约 311,437 项符合
tr 的代码
tr-works
run_tr ()
{
echo -n "echo '$1' | tr '$2' '$3': "
echo "$1" | $bb tr "$2" "$3"
echo
}
tr_test ()
{
run_tr "cbaab" abc zyx
run_tr "TESTING A B C" '[A-Z]' '[a-z]'
run_tr "abc[]" "a[b" AXB
tr-d-works
echo testing | tr -d aeiou > logfile.gnu
echo testing | busybox tr -d aeiou > logfile.bb
diff -u logfile.gnu logfile.bb
tr-d-alnum-works
echo testing | tr -d '[[:alnum:]]' > logfile.gnu
echo testing | busybox tr -d '[[:alnum:]]' > logfile.bb
diff -u logfile.gnu logfile.bb
tr-rejects-wrong-class
echo t12esting | tr -d '[[:alpha:]]' > logfile.gnu
echo t12esting | tr -d '[:alpha:]' >> logfile.gnu
echo t12esting | tr -d '[[:alpha:]' >> logfile.gnu
echo t12esting | tr -d '[[:alpha:' >> logfile.g
tr
# generated from XKB map tr
include common
map 0x41f
exclam 0x02 shift
onesuperior 0x02 altgr
exclamdown 0x02 shift altgr
apostrophe 0x03 shift
at 0x03 altgr
oneeighth 0x03 shift altgr
dead_circumflex
tr.po
# Turkish translation of samba.
# This file is distributed under the same license as the samba package.
# Mehmet Türker , 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: samba
tr.po
# Turkish translation of samba.
# This file is distributed under the same license as the samba package.
# Mehmet Türker , 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: samba
tr-non-gnu
echo fdhrnzvfu bffvsentr | busybox tr '[a-z]' '[n-z][a-m]'
tr-works
echo "cbaab" | tr abc zyx > logfile.gnu
echo "TESTING A B C" | tr [A-Z] [a-z] >> logfile.gnu
echo abc[] | tr a[b AXB >> logfile.gnu
echo "cbaab" | busybox tr abc zyx > logfile.bb
echo "TESTING A B C"
tr-d-works
echo testing | tr -d aeiou > logfile.gnu
echo testing | busybox tr -d aeiou > logfile.bb
cmp logfile.gnu logfile.bb