Skip to content

Instantly share code, notes, and snippets.

@Me1000
Created August 18, 2012 18:25
Show Gist options
  • Select an option

  • Save Me1000/3388879 to your computer and use it in GitHub Desktop.

Select an option

Save Me1000/3388879 to your computer and use it in GitHub Desktop.

Revisions

  1. Randy Luecke created this gist Aug 18, 2012.
    14 changes: 14 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    echo "Hi, I'm Douglas Crockford. What do you want?";

    while read question
    do
    what="$question"

    if [ -z "${what}" ]; then
    echo "Stop waisting my time."
    exit
    else
    echo "My code is perfect."
    fi

    done