I am new to Unix shell scripting and would like some help with writing small script.
I have defined a following synopsis for my script:
install.sh [-h|-a path|[-k path][-f path][-d path][-e path]]
ie user can request some help (-h)
, install all to a specified place (-a path
), or install one or more of a components (-k, -f, -d -e
) to a appropriate paths. If there is no arguments, the help should be shown.
Thanks in advance.