Shell Scripting
Bash - improved version of sh
Variables
#!/bin/bash
name="Anurag"
echo $name
file_name="setup.yaml"
config=$(ls /bin)
echo "$file_name and config in $config"
If-Else
if [ -d "temp1" ]
then
echo "reading it"
else
echo "NOT FOUND"
...
parashar.hashnode.dev2 min read