doc: move @shortcontents and @contents from end to start
[platform/upstream/coreutils.git] / tests / ls / file-type
1 #!/bin/sh
2 # contrast ls -F, ls -p, and ls --indicator-style=file-type
3
4 # Copyright (C) 2002, 2005-2008 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 if test "$VERBOSE" = yes; then
20   set -x
21   ls --version
22 fi
23
24 . $srcdir/test-lib.sh
25
26 mkdir sub
27 cd sub
28 mkdir dir
29 touch regular executable
30 chmod a+x executable
31 ln -s regular slink-reg
32 ln -s dir slink-dir
33 ln -s nowhere slink-dangle
34 mknod block b 20 20 2> /dev/null && block="block
35 "
36 mknod char c 10 10 2> /dev/null && char="char
37 "
38 mkfifo fifo
39 cd ..
40
41
42 fail=0
43
44 ls -F sub > out || fail=1
45 cat <<EOF > exp
46 $block${char}dir/
47 executable*
48 fifo|
49 regular
50 slink-dangle@
51 slink-dir@
52 slink-reg@
53 EOF
54
55 sed 's/\*//' exp > exp2
56 ls --indicator-style=file-type sub > out2 || fail=1
57
58 sed 's/[@|]$//' exp2 > exp3
59 ls -p sub > out3 || fail=1
60
61 compare out exp || fail=1
62
63 compare out2 exp2 || fail=1
64
65 compare out3 exp3 || fail=1
66
67 ls --color=auto -F sub > out || fail=1
68 compare out exp || fail=1
69
70 Exit $fail