Initial payload

Signed-off-by: Aoi K <koizumi.aoi@kyoko-project.wer.ee>
このコミットが含まれているのは:
Aoi K 2022-11-11 20:29:24 -03:00
コミット 80a5d4516f
4個のファイルの変更49行の追加0行の削除

15
DPL-2.3 ノーマルファイル
ファイルの表示

@ -0,0 +1,15 @@
Discordian Public License 2.3 (DPL-2.3)
All Rites Reversed (ĸ) 3188 Aoi Koizumi [Champagne Supernova the 1st Magician of Chaotic Confusion] <koizumi.aoi@kyoko-project.wer.ee>
Permission is hereby granted, to any person obtaining a copy of this
material without restriction, including but not limited the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the material, subject to the following conditions:
YOU AGREE THAT THERE IS NO GODDESS BUT GODDESS AND SHE IS YOUR GODDESS &
THAT THERE IS NO ERISIAN MOVEMENT BUT THE ERISIAN MOVEMENT AND IT IS THE
ERISIAN MOVEMENT.
HAIL ERIS!
FIVE TONS OF FLAX

4
README ノーマルファイル
ファイルの表示

@ -0,0 +1,4 @@
git-crap
========
Let's git some free crap!
These scripts are sort of inspired by git-send-email & co.

24
git-send-paste ノーマルファイル
ファイルの表示

@ -0,0 +1,24 @@
#!/bin/sh
usage() {
printf "Usage: %s --diff=<diff> --paste=<paste>\n" "${0##/*}"
}
for arg; do
case $arg in
-h) usage ;;
--diff=*) diff=${arg#*=} ;;
--paste=*) paste=${arg#*=} ;;
*-*) printf "Unknown option: %s\n" "$arg" ;;
*=*) export "${arg:?}" ;;
*) printf "Unknown argument: %s\n" "$arg" ;;
esac
done
if [ -z $diff && -z $paste ]; then
usage
exit 1
else
printf "Sending patch file %s to endpoint %s\n" "${diff}" "${paste}"
cat $diff | nc $paste 9999
fi

6
mkfile ノーマルファイル
ファイルの表示

@ -0,0 +1,6 @@
PREFIX=/usr/local
install:
install -m0755 git-send-paste $PREFIX/bin/git-send-paste
uninstall:
rm -f $PREFIX/bin/git-send-paste