Linux Scenario Based Questions
How would you create a directory named "Ritul" with a subdirectory named "Anjali" and a file named "hello.txt" inside the "Anjali" subdirectory using a single command in Linux?
mkdir -p Ritul/Anjali && touch Ritul/Anjali/hello.txt
You have a direc...
ritul.hashnode.dev5 min read