Configs/.dotfiles/functrc

14 lines
146 B
Plaintext
Raw Normal View History

function ccr() {
gcc "$1" && ./a.out
}
function cxxr() {
g++ "$1" && ./a.out
}
function gitacp() {
git add .
git commit -m "$1"
git push
}