~:Shell Scripting Tutorial:~
Script for echoing a message:
#!/bin/bash
echo "Hello! how are you?"
echo "hey! I'm fine."
Script for creation of dir & files under the dir:
#!/bin/bash
mkdir new_folder
cd /home/ubuntu/shell_script/new_folder
echo "this is the new file" > new_file...
devopscsant.hashnode.dev4 min read