↧
Shell script to copy all files recursively and upload them to remote FTP server
#!/bin/bash# Shell script to copy all files recursively and upload them to # remote FTP server (copy local all directories/tree to remote ftp server)## If you want to use this script in cron then make...
View ArticleShell script to remove whole ftp directory structure
#!/bin/bash# Shell script to remove whole (nuke) ftp directory structure # See url for more info:# http://www.cyberciti.biz/tips/how-to-nuke-a-ftp-server.html#...
View Article