Files
dev_prod/10x_generic_programming.sh
Pratik Tripathy 5765e05ec0 - Moved existing functions from dotfiles over to this repo.
- Made pnew() loop till a valid name is given.
- Made bootstrap script to symlink all scripts to ~/.config/shell
2024-02-09 17:12:48 +05:30

8 lines
155 B
Bash

#!/bin/sh
url_encode(){
python3 -c "import urllib.parse, sys; print(urllib.parse.quote(sys.stdin.read()))" <<< "$1"
}
alias gicp="cp ~/.gitignore ."