1 2 3 4 5 6 7
#!/bin/sh export LOGOLIB=/usr/lib/logo/logolib if [[ -f "$1" ]]; then cat "$1" | /usr/bin/logo.elf "$*" | head -n-2 else /usr/bin/logo.elf "$@" fi