mirror of
https://gitlab.com/octospacc/Configs.git
synced 2025-01-09 20:53:02 +01:00
14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
function ccr() {
|
|
gcc "$1" && ./a.out
|
|
}
|
|
|
|
function cxxr() {
|
|
g++ "$1" && ./a.out
|
|
}
|
|
|
|
function gitacp() {
|
|
git add .
|
|
git commit -m "$1"
|
|
git push
|
|
}
|