Which of the three methods will copy the directory named 'photo dir' recursively from the user's home directory to /backups?'''bashcp -R '~/photo dir' /backups #method1cp -R ~'/photo dir' /backups #method2cp -R ~/'photo dir' /backups #method3

🎲 Try a Random Question  |  Total Questions in Quiz: 70  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Bash Quiz — practice the complete quiz, review flashcards, or try a random question.

MCQs For LinkedIn Skill Assessments. Bash is a Unix shell and command language.


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