launching rsync in named screen so I can reattach to check progress, how can I run a command after the rsync, as is it launches the screen then immediately executes the command?
screen -dmS name rsync
ssh user@hostname 'rm -r ~/path/*'
I'm trying to delete the symlinks of file copied by the rsync,, kind of a "copy once" I don't want to delete source files though.