mirror of
https://github.com/boostorg/website.git
synced 2026-01-19 04:42:17 +00:00
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ${HOME}/www.boost.org/testing
|
|
for result in `find incoming -mmin +5 -name '*.zip'` ; do
|
|
f=`basename ${result}`
|
|
mv -f live/${f} old
|
|
mv -f ${result} live
|
|
rm -f old/${f}
|
|
done
|