mirror of
https://github.com/ctm/executor.git
synced 2024-12-02 18:49:41 +00:00
7 lines
441 B
Bash
7 lines
441 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find /ardi/executor/src -type f -name '*.[chm]' -print | xargs co -l -f -q
|
||
|
find /ardi/executor/src -type f -name '*.[chm]' -print | xargs /ardi/executor/util/uncruft.pl
|
||
|
find /ardi/executor/src -type f -name '*.[chm]' -exec /ardi/executor/util/temp-hack.sh /ardi/executor/util/uncopyright.pl '{}' ';'
|
||
|
find /ardi/executor/src -type f -name '*.[cm]' -exec /ardi/executor/util/temp-hack.sh /ardi/executor/util/commonify.pl '{}' ';'
|