8 lines
303 B
Bash
8 lines
303 B
Bash
#!/bin/sh
|
|
|
|
cd ~/data
|
|
echo "get -a -p -R /home/siemensfri/*" | sftp -P 2222 spicafri@dioda.fri.uni-lj.si
|
|
# echo "get -a -p -R /home/siemensfri/*" | sftp -P 2222 spicafri@nebi.fri1.uni-lj.si
|
|
find ~/data -mtime +365 -exec rm {} \;
|
|
|
|
~/siemens-spica-rilec/siemens_to_spool.py 2>> ~/logs/siemens_to_spool.log
|