Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tr-works « tr « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8753a3f28aec35324cc83ae8a42269d48f889ef7 (plain)
1
2
3
4
5
6
7
8
9
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" | busybox tr [A-Z] [a-z] >> logfile.bb
echo abc[] | busybox tr a[b AXB >> logfile.bb

cmp logfile.gnu logfile.bb