neur0toxine.pages.neur0tx.site/.zs/include
Neur0toxine bf721ec8b7
Some checks failed
continuous-integration/drone/push Build is failing
move to zs generator
2023-11-12 22:41:53 +03:00

15 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