CAChaitrali Awasareinchaitrali.hashnode.dev·Feb 9, 2024 · 2 min readBasic Of Linux Shell ScriptingWhat is Shell Scripting? Shell is a programming language designed for users to communicate with Kernel. The shell script is a list of human-readable commands converted into something the kernel can understand. What is #!/bin/bash? can we write #!/bin...00
CAChaitrali Awasareinchaitrali.hashnode.dev·Feb 6, 2024 · 2 min readBasic Linux CommandsHere are some basic linux commands which can get you started. View contents of a file. Command: cat <filename> for eg. cat day3.sh Change access permissions of file. To understand file permissions we need to understand what all groups are pres...00
CAChaitrali Awasareinchaitrali.hashnode.dev·Feb 2, 2024 · 1 min readLinux Basic CommandsHow to check the present working directory. pwd command will show you the current directory How to list all the files or directories including hidden files. ls command lists all the files and directories whereas ls -a lists all the directories i...01N