11 lines
159 B
Bash
11 lines
159 B
Bash
#!/bin/sh
|
|
|
|
# Compatibility replacement for vncpasswd.arg.
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "Usage: $0 file password"
|
|
exit 1
|
|
fi
|
|
|
|
echo "$2" | vncpasswd -f > "$1"
|