Answers for "How to Pass Arguments to a Bash Script"

0

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 "How to Pass Arguments to a Bash Script"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language