annotate bin/paste @ 10286:916b38c83c3b

<fizzie> sled bin/paste//s,\\(HACKENV/\\|url \\)paste,\\1tmp/paste,
author HackBot
date Thu, 16 Feb 2017 16:44:26 +0000
parents 56dcce63901b
children 0d78afb61c51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5643
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
1 #!/bin/bash
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
2 if [ "$1" ] && url "$1" 2>/dev/null # Save making a file when it already exists.
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
3 then
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
4 true
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
5 else
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
6 PASTENUM="$RANDOM"
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
7
10286
916b38c83c3b <fizzie> sled bin/paste//s,\\(HACKENV/\\|url \\)paste,\\1tmp/paste,
HackBot
parents: 5643
diff changeset
8 mkdir -p $HACKENV/tmp/paste
5643
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
9
10286
916b38c83c3b <fizzie> sled bin/paste//s,\\(HACKENV/\\|url \\)paste,\\1tmp/paste,
HackBot
parents: 5643
diff changeset
10 url tmp/paste/paste."$PASTENUM"
916b38c83c3b <fizzie> sled bin/paste//s,\\(HACKENV/\\|url \\)paste,\\1tmp/paste,
HackBot
parents: 5643
diff changeset
11 cat -- "${1--}" > $HACKENV/tmp/paste/paste."$PASTENUM"
5643
56dcce63901b <tswett> revert
HackBot
parents:
diff changeset
12 fi