diff options
Diffstat (limited to 'export-pad')
-rwxr-xr-x | export-pad | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/export-pad b/export-pad deleted file mode 100755 index fd17d2a..0000000 --- a/export-pad +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# -# Export etherpad content into a file. -# - -# Parameters -URL="$1" -FILE="$2" -BASENAME="`basename $0`" - -# Check -if [ -z "$FILE" ]; then - echo "usage: $BASENAME <url> <file>" - exit 1 -fi - -# Dispatch -torify curl $URL/export/txt > $FILE |