X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/fae90a2a15dde4a7472a5353857f1497c63e00db..26ffc95f66633e04e63ddce54c6161c5ce80b6b7:/.zsh/func/p diff --git a/.zsh/func/p b/.zsh/func/p deleted file mode 100644 index 7a646df..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–2017 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -# Source repository: http://git.madduck.net/v/etc/zsh.git -# - -if [[ $# -gt 1 ]]; then - echo E: only one argument can be passed. >&2 - exit 1 -fi - -PERMATAG=$USER -PB=http://slexy.org -PBIT="pastebinit -b $PB -a $USER" - -FILE=- -[[ -n "$1" ]] && FILE="$1" - -eval $PBIT -i $FILE | sed -e s@/view/@/raw/@