taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

import.sh (198B)


      1 #!/bin/sh
      2 # Little script to patch up the "-latest" links.
      3 for n in $*
      4 do
      5     NBASE=$(echo $n | sed -e "s/-.\.png//")
      6     echo $NBASE
      7     rm -f $NBASE-latest.png
      8     ln -s $n $NBASE-latest.png
      9 done