Skip to content

Instantly share code, notes, and snippets.

@olealgoritme
Created January 21, 2019 23:50
Show Gist options
  • Save olealgoritme/938888310488e24d0636a4a796805c2d to your computer and use it in GitHub Desktop.
Save olealgoritme/938888310488e24d0636a4a796805c2d to your computer and use it in GitHub Desktop.
push gist quickly with bash
#!/bin/bash
# based on: https://gist.github.com/s-leroux/7cb7424d33ba3753e907cc2553bcd1ba
# modified by: cca
set -u -o pipefail
set_dir(){ _dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"; }; set_dir
safe_source () { source $1; set_dir; }
# end of bash boilerplate
print_usage(){
cat << USAGE
usage:
$(basename $0) /path/to/file Github_user_name
or
lsusb | $(basename $0) Github_user_name
USAGE
}
# 0. Your file name
FNAME="${1:-}"
if [[ -f "$FNAME" ]]; then
CONTENT=$(cat "$FNAME")
GITHUB_USERNAME="${2:-}"
else
CONTENT=$(timeout 2 cat -)
GITHUB_USERNAME="${1-}"
FNAME="stdin"
if [[ "$CONTENT" == "" ]]; then
print_usage
exit 2
fi
fi
# Github does not permit anonymous uploads since April 2018
if [[ -z $GITHUB_USERNAME ]]; then
print_usage
exit 2
fi
# 1. JSON-Stringify the file content:
# Replace \ with \\
# Remove \r (from Windows end-of-lines)
# Replace tabs with \t
# Replace " with \"
# Replace EOL with \n
CONTENT=$(echo "${CONTENT}" | sed -e 's/\\/\\\\/g' -e 's/\r//' -e's/\t/\\t/g' -e 's/"/\\"/g' | sed -E ':a;N;$!ba;s/\r{0,1}\n/\\n/g')
# 2. Get the description
read -p "Give a description: " DESCRIPTION
# 3. Build the JSON request
tmp_file=$(mktemp)
cat > $tmp_file <<EOF
{
"description": "$DESCRIPTION",
"public": true,
"files": {
"$(basename $FNAME)": {
"content": "${CONTENT}"
}
}
}
EOF
# 4. Use curl to make a POST request
OUTPUT=$(curl -u ${GITHUB_USERNAME} -X POST -d @$tmp_file "https://api.github.com/gists")
uploaded_url=$(echo "$OUTPUT" | grep 'html_url' | grep 'gist' | head -n1 | awk '{print $2}')
# 5. cleanup the tmp file
rm $tmp_file
# 6. Show the output
if [[ ! -z ${uploaded_url:-} ]]; then
echo "URL: " $uploaded_url
else
echo "----- ERROR -----"
echo "$OUTPUT"
echo "-----------------"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment