11 lines
205 B
Plaintext
11 lines
205 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd ~/wx/utils/wxPython
|
||
|
|
||
|
find . -name "*.py" > filelist
|
||
|
find . -name "*.i" >> filelist
|
||
|
find . -name "*.h" >> filelist
|
||
|
find . -name "*.cpp" >> filelist
|
||
|
|
||
|
cat filelist | zip -r -u -@ xfer.zip
|