Linux CLI - Navigating the File System
After running these commands:
mkdir testdir cd testdir pwdWhat will be the output of
pwd?mkdir testdir cd testdir pwdWhat will be the output of
pwd?mkdir testdir creates a folder in the current directory (assumed to be /home/user). cd testdir moves into that folder.pwd prints the full path, which is /home/user/testdir.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions