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 IamaSherpa 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. ephemeralz

    parse url form data

    i need a function that decodes form data encoded in HTTP GET REQUEST URL: www.myspace.com/formWrite?user=jdoe&name=john+doe and return a dictionary of key/value pairs representing the form data. ‘+’ signs in values should be converted to spaces {'user':'jdoe','name':['john doe']} below is my...
  2. ephemeralz

    script using cal that accepts from command line

    I already have a program 'name2num' that converts the months to a number. e.g. jan = 1, mar = 3, etc.. I'm new to shell scripting and below is what I have so far: if [ $# = 0 ] ; then echo "usage: $0 month .." exit fi MONTH = "" DASH = FALSE for m in $* do...
  3. ephemeralz

    script using cal that accepts from command line

    I want to create a script that can accepts more than one month name on the command line, as in "mycal jan feb" and also accept ranges of months like "mycal jan - mar" or also "mycal jan - mar 2004 apr 2003" Thanks for the help

Part and Inventory Search

Back
Top