Ever burned a cake?
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

16 lignes
361B

  1. #!/bin/sh
  2. # source install
  3. TARGET=${TARGET:-/usr/local}
  4. INSTALL=${INSTALL:-bake shake}
  5. cd $(dirname "$(readlink -f "$0")")
  6. chmod +x shake
  7. ./shake bake.c -s $@ && \
  8. mkdir $TARGET/bin $TARGET/man/man1 -p && \
  9. install -m 755 $INSTALL $TARGET/bin
  10. gzip -c bake.1 > $TARGET/man/man1/bake.1.gz && \
  11. ln -f -s $TARGET/man/man1/bake.1.gz $TARGET/man/man1/shake.1.gz