8 lines
249 B
Bash
8 lines
249 B
Bash
#!/bin/sh
|
|
|
|
find * -name \*.py | xargs grep -l '[ ]*$' | xargs sed -i -e 's/[ ]*$//'
|
|
rsync "$@" -vax --include \*.py \
|
|
--exclude Toxygen.egg-info --exclude build \
|
|
--exclude \*.pyc --exclude .pyl\* --exclude \*~ \
|
|
./ ../toxygen.git/|grep -v /$
|