Answers for "command line arguments bash script"

1

How to Pass Arguments to a Bash Script

makereport -u jsmith -p notebooks -d 10-20-2011 -f pdf

#!/bin/bash
while getopts u:d:p:f: option
do
case "${option}"
in
u) USER=${OPTARG};;
d) DATE=${OPTARG};;
p) PRODUCT=${OPTARG};;
f) FORMAT=${OPTARG};;
esac
done
Posted by: Guest on October-30-2021

Code answers related to "command line arguments bash script"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language