X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/9803fcd37c718bdfbfb565329c5b23801aa3584c..26ffc95f66633e04e63ddce54c6161c5ce80b6b7:/.zsh/func/p diff --git a/.zsh/func/p b/.zsh/func/p deleted file mode 100755 index a4f66a8..0000000 --- a/.zsh/func/p +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/zsh -# -# func/p -# -# function to publish to a pastebin (using pastebinit) -# -# Copyright © 1994–2008 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -# Source repository: git://git.madduck.net/etc/zsh.git -# - -if [[ $# -gt 1 ]]; then - echo E: only one argument can be passed. >&2 - exit 1 -fi - -PERMATAG=$USER -PB=http://rafb.net -PBIT="pastebinit -b $PB -a $USER" - -FILE=- -[[ -n "$1" ]] && FILE="$1" - -eval $PBIT -i $FILE