Files

12 lines
108 B
Bash
Raw Permalink Normal View History

2026-01-23 08:55:18 +01:00
#!/usr/bin/bash
2026-01-24 16:31:11 +01:00
if [ "$#" -lt 1 ] ; then
2026-01-23 08:55:18 +01:00
echo "Usage: $0 arg1"
exit 1
fi
cat $(which $1)
exit 0