source:
drbl_ui/backup/test_busybox/busybox-1.7.2/testsuite/expand/expand-works-like-GNU
@
27
Last change on this file since 27 was 20, checked in by chris, 17 years ago | |
---|---|
File size: 408 bytes |
Line | |
---|---|
1 | rm -f foo bar |
2 | echo -e "\ty" | expand -t 3 ../../busybox > foo |
3 | echo -e "\ty" | busybox unexpand -t 3 ../../busybox > bar |
4 | set +e |
5 | test ! -f foo -a -f bar |
6 | if [ $? = 0 ] ; then |
7 | set -e |
8 | diff -q foo bar |
9 | fi |
10 | rm -f foo bar |
11 | echo -e "\ty\tx" | expand -it 3 ../../busybox > foo |
12 | echo -e "\ty\tx" | busybox unexpand -it 3 ../../busybox > bar |
13 | set +e |
14 | test ! -f foo -a -f bar |
15 | if [ $? = 0 ] ; then |
16 | set -e |
17 | diff -q foo bar |
18 | fi |
Note: See TracBrowser
for help on using the repository browser.