Aug 27, 2024
arguments.sh.#!/bin/bash
$1 for the first parameter$2 for the second parameter$3 for the third parameter$9 for the ninth parameter$0 returns the name of the script.chmod +x arguments.sh
./arguments.sh
"Ayush Kumar"
echo "$@"
echo "$#"
name="$1"
Thank you for watching!