panik
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

trace.sh
text/x-sh

Download raw (128 bytes)

#!/bin/bash

for f1 in *.*; do
 convert "$f1" pbm:- | potrace -s -o "`echo $f1 | sed 's/\(.*\)\..*/\1/'`.svg"
done
echo "stop"