Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. oiihob

    radio button don't work properly

    Where you have: It should be: <input type='radio' name='dateType' id='dateTypeSingle' value='by_date' /> <label for='dateTypeSingle'><b>Date:</b></label> <input type='radio' name='dataType' id='dateTypeRange' value='date_range' /> <label...
  2. oiihob

    kshell - separating parameters to a program

    You need to understand the differences between "$*" and "$@" (which can only be used as "$@" or it reverts to a $*). The "$@" returns the arguments in a quoted form. for argtext in "$@"; do let index=${index:-0}+1 echo "Argument ${index}: is '${argtext}'" done for example: $ my_cmd...

Part and Inventory Search

Back
Top