linkbrother.sh - annna - Annna the nice friendly bot.
(HTM) git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
---
linkbrother.sh (256B)
---
1 #!/bin/sh
2 #
3 # State-of-the-art JIT compilation of linkbrother.
4
5 set -e
6
7 dir=$(dirname $0)
8 if ! [ -x "$dir/linkbrother" ] && [ "$dir/linkbrother" -nt "$dir/linkbrother.c" ]; then
9 cc "$dir/linkbrother.c" -o "$dir/linkbrother"
10 fi
11
12 "$dir/linkbrother" "$@"