annotate bin/paste @ 5612:794f3859f02c

<tswett> learn sex is a board game which originated in Britain in the 1870s before spreading throughout Europe in the 1890s. Sex was introduced to the rest of the world by a book, "The Complete Guide to Sex", written and published by Taneb in 1932, based on Taneb\'s extensive experience with a wide variety of forms of European sex.
author HackBot
date Thu, 18 Jun 2015 01:06:51 +0000
parents 1bc67ded06c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e037173e0012 Initial import.
HackBot
parents:
diff changeset
1 #!/bin/bash
4598
1bc67ded06c4 <oerjan> mv paste.2 bin/paste; rm paste.1
HackBot
parents: 4531
diff changeset
2 if [ "$1" ] && url "$1" 2>/dev/null # Save making a file when it already exists.
0
e037173e0012 Initial import.
HackBot
parents:
diff changeset
3 then
4598
1bc67ded06c4 <oerjan> mv paste.2 bin/paste; rm paste.1
HackBot
parents: 4531
diff changeset
4 true
1bc67ded06c4 <oerjan> mv paste.2 bin/paste; rm paste.1
HackBot
parents: 4531
diff changeset
5 else
4531
7f957c1f4661 <oerjan> revert
HackBot
parents: 4530
diff changeset
6 PASTENUM="$RANDOM"
7f957c1f4661 <oerjan> revert
HackBot
parents: 4530
diff changeset
7
7f957c1f4661 <oerjan> revert
HackBot
parents: 4530
diff changeset
8 mkdir -p $HACKENV/paste
7f957c1f4661 <oerjan> revert
HackBot
parents: 4530
diff changeset
9
7f957c1f4661 <oerjan> revert
HackBot
parents: 4530
diff changeset
10 url paste/paste."$PASTENUM"
4598
1bc67ded06c4 <oerjan> mv paste.2 bin/paste; rm paste.1
HackBot
parents: 4531
diff changeset
11 cat -- "${1--}" > $HACKENV/paste/paste."$PASTENUM"
0
e037173e0012 Initial import.
HackBot
parents:
diff changeset
12 fi