Cloud Tunedcloudtuned.hashnode.dev·Jul 10, 2024Cheat Sheet #day45 - mkdirmkdir Cheatsheet Basic Usage Create a Directory mkdir directory_name Common Options Create Parent Directories as Needed mkdir -p /path/to/new/directory Set Permissions for the New Directory mkdir -m 755 directory_name Display a Message...Cheat Sheetscheatsheet
AccDevabojeonline.com·Mar 27, 2024Simple Command-line Prompts in the TerminalWhy The Terminal? I know you must be eager by now, with the tension building to jump right into coding, but these preliminary lessons would help set you up for success. From our previous lesson https://abojeonline.com/installation-of-vscode-extension...Front End Development: The Accidental Developer Seriesterminal
vivek singhviveksinghcs165.hashnode.dev·Apr 21, 2023Basic Linux Command - Part 2We can create Directory in Linux with the use of mkdir command. mkdir - Make Directory To create a directory. Run mkdir command # mkdir dir name ex- #mkdir d1 D1 is the dir name. To create multiple directories #mkdir d2 d3 d4 To change a direct...38 readsBasic linux commands