DEV Community

Discussion on: Customising our bash shell

Collapse
 
leolanese profile image
Leo Lanese

Thanks, updated:

## aliases validate JSON
#   ------------------------------------------------------------
alias JSONValidate=" open https://jsonformatter.curiousconcept.com/ "
alias JSONTools=" open https://jsonformatter.org/ "

## aliases Mock RestAPI (local and remote)
#   ------------------------------------------------------------
alias mockRestAPI1=" open https://jsonplaceholder.com/ " 
alias mockRestAPI2=" open http://www.jsontest.com/ "
alias mockRestAPI3=" open https://www.mocky.io/ "
alias mockRestAPI4=" open https://app.fakejson.com/ "
alias mockRestAPI4=" open http://www.omdbapi.com/ "

If you have any other suggestion, feel free to make a Pull/Request to the GitHub account: github.com/leolanese/bash_profile.git

Collapse
 
cbmgit profile image
codeblogmoney

Awesome.. Thank you.