Complete the command to list files and use tab completion to fill the filename.
ls [1]The -a option lists all files including hidden ones, which is often used with tab completion to see all files.
Complete the command to change directory using tab completion for a folder starting with 'Doc'.
cd [1]Tab completion helps fill the folder name starting with 'Doc'. 'Documents' is the correct folder here.
Fix the error in the command to use tab completion for a hidden file starting with '.bash'.
cat [1]Hidden files start with a dot. Tab completion helps fill '.bashrc' correctly.
Fill both blanks to create a command that lists files with detailed info and uses tab completion for the directory.
ls [1] [2]
The -l option shows detailed info. Tab completion helps fill the directory 'Documents'.
Fill all three blanks to create a command that copies a file using tab completion for source and destination filenames.
cp [1] [2] [3]
The -i option asks before overwrite. Tab completion fills source 'file1.txt' and destination 'file2.txt'.