summaryrefslogtreecommitdiff
path: root/community/ucblogo/logo.sh
blob: 4f80180c0401d8d98c52036e0a182740e4d49596 (plain)
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