Which of the three methods will copy the directory named "photo dir" recursively from the user's home directory to /backups?
cp -R "~/photo dir" /backups #method1
cp -R ~"/photo dir" /backups #method2
cp -R ~/"photo dir" /backups #method3
Which of the three methods will copy the directory named "photo dir" recursively from the user's home directory to /backups?
cp -R "~/photo dir" /backups #method1
cp -R ~"/photo dir" /backups #method2
cp -R ~/"photo dir" /backups #method3