@@ 1,15 1,18 @@
-# Scripts and Tools for dpaste.com #
-*License: MIT*
-### [dpaste.sh](https://bitbucket.org/pbx/dpaste-tools/src/tip/dpaste.sh?fileviewer=file-view-default)
+Scripts and Tools for dpaste.com
+================================
+
+License: MIT
+
+dpaste.sh
+---------
+
Simple command-line client for creating dpaste items from stdin. Optionally specify syntax, title, and expiry. Resulting item is opened in your browser (via `xdg-open` on Linux; use `open` on macOS).
Sample session:
-```
-#!bash
-$ dpaste.sh -t Demo -s python3 -e 1
-Paste your content now, ^D to submit.
----
-print("Hello!")
----
-http://dpaste.com/0DEME1M
-```
No newline at end of file
+
+ $ ./dpaste.sh -t Demo -s haskell
+ Paste your content now, ^D to submit.
+ ---
+ quicksort (p:xs) = (quicksort lesser) ++ [p] ++ (quicksort greater)
+ ---
+ http://dpaste.com/25YJJ3MFJ