Linux CLI - File and Directory Operations
Given the commands:
What will be the output of
touch file1.txtmkdir archivemv file1.txt archive/What will be the output of
ls archive/?touch file1.txtmkdir archivemv file1.txt archive/ls archive/?touch file1.txt creates an empty file. mkdir archive creates a directory. mv file1.txt archive/ moves the file into the directory.archive/ contains file1.txt.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions