catpoint-wrap - catpoint - Catpoint simple presenting software.
(HTM) git clone git://bitreich.org/catpoint/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/catpoint/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
catpoint-wrap (242B)
---
1 #!/bin/sh -e
2
3 if [ $# -lt 2 ];
4 then
5 printf "%s: animation_script.sh slide...\n" \
6 "$(basename "$0")" >&2
7 exit 1
8 fi
9
10 animation_script=$1
11 shift
12
13 for slide; do
14 set -- "$@" "$animation_script" "$slide"
15 shift
16 done
17
18 exec catpoint "$@"
19