just added another GET request example for restclient

This commit is contained in:
booboy 2018-07-24 00:28:13 -05:00
parent 1902836b96
commit 579fee68fd
2 changed files with 27 additions and 66 deletions

23
.bashrc Normal file
View file

@ -0,0 +1,23 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
[[ -f ~/.bash_functions ]] && . ~/.bash_functions
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
[[ -f ~/.envars ]] && . ~/.envars
source `which activate.sh` || echo 'install autoenv to properly use auto
environment switching in python'
PATH="/usr/bin/core_perl:/home/booboy/.gem/ruby/2.5.0/bin:/home/booboy/perl5/bin${PATH:+:${PATH}}"; export PATH;
PERL5LIB="/home/booboy/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
PERL_LOCAL_LIB_ROOT="/home/booboy/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
PERL_MB_OPT="--install_base \"/home/booboy/perl5\""; export PERL_MB_OPT;
PERL_MM_OPT="INSTALL_BASE=/home/booboy/perl5"; export PERL_MM_OPT;
export EDITOR="vim"
export LIBVIRT_DEFAULT_URI="qemu:///system"
source ~/.pastebin_key

File diff suppressed because one or more lines are too long