blob: 52cca14ed8338ce47073a9ad860009bc8fa6ad81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
echo "Someone wanted to invoke 'xpdf'. This invocation was captured by this dummy script:"
echo " '${0}',"
echo "which does nothing except printing this informational message."
echo ""
echo "There where '${#}' command line arguments passed. The complete command invoked was:"
echo -n " '${0}' "
while (( ${#} > 0 )); do
echo -n "'${1}' "
shift
done
echo ""
|