File: getPassword.src

package info (click to toggle)
yaws 1.65-4etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,164 kB
  • ctags: 3,907
  • sloc: erlang: 20,138; sh: 3,675; makefile: 556; ansic: 404; lisp: 79
file content (17 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash --

progname=`basename $0`

function usage () {
    cat <<EOF
usage: $progname <wob file>
EOF
    exit 1
}


if test $# -ne 1 ; then
	usage
fi

erl -noinput -pa %%ebindir%% -s wiki getPassword $1