9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in webif/plugin/sweeper/; do
|
|
rsync -avr --delete --exclude=.svn humax:/mod/$f ./$f
|
|
done
|
|
[ -f webif/plugin/sweeper/.raw ] && rm -f webif/plugin/sweeper/.raw
|
|
|
|
|