2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-19 04:42:17 +00:00
Files
website/common/code/update-6x6.sh
2007-12-05 21:12:23 +00:00

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