Divya K Nairday-4-basic-linux-shell-scripting.hashnode.dev·Oct 15, 2024Day 3-Advanced linux commandsAdvanced Linux Commands Why you cannot access /root directory and how to access root directory? /root is the home directory of root user.Bydefault only root user has access to this directory when you are loggedin as regular user,even if you can acces...#SSH INTO YOUR LINUX VIRTUAL MACHINE
Muzammil Jan90days.hashnode.dev·Jul 20, 2024Advance Shell Scripting Tutorial for beginnersTo create multiple directories in given range using script #!/bin/bash # Shebang to specify the script should be run using Bash # Function to create directories create_directories() { local prefix="$1" # First argument: prefix for the directo...Linux