Files
svr/usr/bin/catbin
T
2026-01-23 08:55:18 +01:00

12 lines
108 B
Bash
Executable File

#!/usr/bin/bash
if [ "$#" -ne 1 ] ; then
echo "Usage: $0 arg1"
exit 1
fi
cat $(which $1)
exit 0