File: examples.sh

package info (click to toggle)
python-leather 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 652 kB
  • sloc: python: 2,385; makefile: 117; sh: 5
file content (8 lines) | stat: -rwxr-xr-x 111 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/bash

export PYTHONPATH="$PYTHONPATH:$(pwd)"

for f in examples/*.py; do
    echo $f
    python $f
done