annotate bin/joke.sh @ 694:ebca6d85213a

File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module> from .application import * File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module> from IPython.config.configurable import SingletonConfigurable File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module> from IPython.utils.text import indent, wrap_paragraphs File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module> from IPython.external.path import path File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module> from path import * File "/home/jhammel/python/path.py", line 25 print root(path) ^
author Jeff Hammel <k0scist@gmail.com>
date Wed, 09 Jul 2014 16:26:49 -0700
parents c7dd4631b526
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
248
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 #!/bin/bash
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 title=$1
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 shift
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 if [[ "${title}" == "" || "$#" == "0" ]]
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7 then
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 exit 1
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9 fi
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
10
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11 filename=~/web/site/comedy/cheapshots/${title}.txt
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12
c7dd4631b526 adding a module for easy jokes; should go -> bitsyapps, etc
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
13 echo "$@" > ${filename}