diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-23 12:49:33 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-23 12:49:33 +0200 |
commit | d6bf11f104a6f4326b7efab308228949cbcf601e (patch) | |
tree | 4478eedc399a962ba149ff512a9a26839d0f1e58 /config/essentials | |
parent | 56bbfce22cc0f0b567f650167f82ce3f7d90e625 (diff) |
checkpoint
Diffstat (limited to 'config/essentials')
-rw-r--r-- | config/essentials/shell/aliases.sh | 1 | ||||
-rw-r--r-- | config/essentials/shell/functions.sh | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/config/essentials/shell/aliases.sh b/config/essentials/shell/aliases.sh index f3f031a..fe8a005 100644 --- a/config/essentials/shell/aliases.sh +++ b/config/essentials/shell/aliases.sh @@ -346,3 +346,4 @@ alias sqlplus='sqlplus -x' alias rsqp='rlwrap sqlplus -x' alias gcamc='gca -m "checkpoint"' alias gdb='gdb -q' +alias gdbr='gdb -ex "target remote :4200"' diff --git a/config/essentials/shell/functions.sh b/config/essentials/shell/functions.sh index d564a1f..ac51bd5 100644 --- a/config/essentials/shell/functions.sh +++ b/config/essentials/shell/functions.sh @@ -69,7 +69,6 @@ trcp() { scp "$1" db:/media/basilisk/downloads/transmission/torrents/; } rln() { ln -s "$(readlink -f "$1")" "$2"; } getgit() { git clone git@db:"$1"; } esc() { eval "$EDITOR '$(which $1)'"; } -gccg() { gcc -g -Wall -pedantic -std=c99 -o ${1%.c} $@; } delfile() { curl -s "${2:-https://upfast.cronyakatsuki.xyz/delete/$1}"; } upfile() { curl -s -F "file=@\"$1\"" "${2:-https://0x0.st}"; } |