If pwd displays /Users/backup,
and -r tells ls to display things in reverse order,
what command(s) will result in the following output:
pnas_sub/ pnas_final/ original/
ls pwd
ls -r -F
ls -r -F /Users/backup
Solution
1. No: `pwd` is not the name of a directory.
2. Yes: `ls` without directory argument lists files and directories in the current directory. 3. Yes: uses the absolute path explicitly.