I'm looking for a command that allows me to securely move a file or directory.
If it doesn't exist, is my only option to write a shell script that
- securely copies the item to the destination
- compares source and destination
- securely deletes the source
cp
ormv
fails at? – BowlOfRed Sep 29 '17 at 01:31srm
after the move, but having a secure copy (using ssh for the data transfer) would improve the solution even more. – Alex Ixeras Sep 29 '17 at 01:39