Linux CLI - File and Directory Operations
Given the commands:
What will be the result?
mkdir testdirtouch file1.txtmv file1.txt testdir/What will be the result?
mkdir testdirtouch file1.txtmv file1.txt testdir/mkdir testdir creates a folder named testdir. touch file1.txt creates an empty file named file1.txt.mv file1.txt testdir/ moves file1.txt into the folder testdir, keeping the same name.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions