zs/default/.zs/include
2024-12-25 22:43:00 +10:00

14 lines
177 B
Bash
Executable file

#!/bin/sh
set -e
if [ ! $# = 1 ]; then
printf "Usage: %s <file>\n" "$(basename "$0")"
exit 0
fi
if [ -f "$1" ]; then
cat "$1"
else
echo "error: file not found $1"
fi