Paturi Radhe Sravan 6a41bd4bff BAEL-3469 - How to pass command line arguments to Bash Script (#8174)
* Example for hexagonal architecture in java

* BAEL-3469 - How to Pass command line arguments to bash script

* Removed source code for evaluation article
2019-11-11 08:19:37 -08:00

15 lines
212 B
Bash

#!/bin/bash
while getopts u:a:f: flag
do
case "${flag}"
in
u) username=${OPTARG};;
a) age=${OPTARG};;
f) fullname=${OPTARG};;
esac
done
echo "Username: $username";
echo "Age: $age";
echo "Full Name: $fullname";