2023-12-17 00:00:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-02-13 21:00:45 +00:00
|
|
|
#find * -name \*.py | xargs grep -l '[ ]*$' | xargs sed -i -e 's/[ ]*$//'
|
|
|
|
rsync "$@" -vaxL --include \*.py \
|
2023-12-17 00:00:38 +00:00
|
|
|
--exclude Toxygen.egg-info --exclude build \
|
2024-02-17 20:02:30 +00:00
|
|
|
--exclude \*.pyc --exclude .pyl\* --exclude \*.so --exclude \*~ \
|
2024-02-05 14:58:00 +00:00
|
|
|
--exclude __pycache__ --exclude \*.egg-info --exclude \*.new \
|
2023-12-17 00:00:38 +00:00
|
|
|
./ ../toxygen.git/|grep -v /$
|