aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/sprunge.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-20 13:50:16 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-20 13:50:16 +1200
commit4195d8d1ffd312f2f295508c0d6147415f0fa16e (patch)
tree7bb930a888ad60af8e629f8746ac0af3661cf2ef /bash/bashrc.d/sprunge.bash
parentUse better test for interactive shell (diff)
downloaddotfiles-4195d8d1ffd312f2f295508c0d6147415f0fa16e.tar.gz
dotfiles-4195d8d1ffd312f2f295508c0d6147415f0fa16e.zip
Remove trailing semicolon from sprunge function
Diffstat (limited to 'bash/bashrc.d/sprunge.bash')
-rw-r--r--bash/bashrc.d/sprunge.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/sprunge.bash b/bash/bashrc.d/sprunge.bash
index d85cf84e..30ea719c 100644
--- a/bash/bashrc.d/sprunge.bash
+++ b/bash/bashrc.d/sprunge.bash
@@ -1,6 +1,6 @@
# #bash on Freenode use their own pastebin, this is a convenience function for
# posting code to it. <http://sprunge.us>
sprunge() {
- curl -F 'sprunge=<-' http://sprunge.us < "${1:-/dev/stdin}";
+ curl -F 'sprunge=<-' http://sprunge.us < "${1:-/dev/stdin}"
}