Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / look / separator
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux-ng.
7 #
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18
19 #
20 # WARNING: the look command expects that the /usr/share/dict/words uses
21 #          directory order!
22 #
23 # for example:
24 #
25 #       cat words.raw | egrep --invert-match "'s$" | \
26 #               egrep  "^[[:alnum:]'&!,./-]+$" | \
27 #               sort --ignore-case --dictionary-order | \
28 #               uniq >  words
29 #
30
31 TS_TOPDIR="$(dirname $0)/../.."
32 TS_DESC="separator"
33
34 . $TS_TOPDIR/functions.sh
35 ts_init "$*"
36
37 [ -f "/usr/share/dict/words" ] || ts_skip "/usr/share/dict/words not such file"
38
39 $TS_CMD_LOOK apple-pie >> $TS_OUTPUT
40 ts_finalize
41