recursive delete with sftp?
You can use the lftp
client to do this. The the -r
option to lftp rm
recursively deletes directories and files.
$ lftp -u <user>,<pass> <server>
lftp> rm -r <directory>
References
- lftp main website
You can use the lftp
client to do this. The the -r
option to lftp rm
recursively deletes directories and files.
$ lftp -u <user>,<pass> <server>
lftp> rm -r <directory>