X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/6225a803b9ff35c0800fba488b0c3753e2e591a9..26ffc95f66633e04e63ddce54c6161c5ce80b6b7:/.zsh/func/p?ds=sidebyside diff --git a/.zsh/func/p b/.zsh/func/p deleted file mode 100755 index ed46135..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://stikked.com -PBIT="pastebinit -b $PB -a $USER" - -FILE=- -[[ -n "$1" ]] && FILE="$1" - -eval $PBIT -i $FILE