diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:48:22 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:48:22 +0300 |
commit | 9d454c64f2f75027ca50b0058b3374a6e2e67346 (patch) | |
tree | 1350f16e8814f05814ce57f124672dcc3ceeee3a | |
parent | .bashrc: reorder stuff (diff) | |
download | linux-home-9d454c64f2f75027ca50b0058b3374a6e2e67346.tar.gz linux-home-9d454c64f2f75027ca50b0058b3374a6e2e67346.zip |
full parameter names
-rw-r--r-- | %HOME%/.bashrc | 2 | ||||
-rw-r--r-- | %HOME%/.gdbinit | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 7ea9817..9979721 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -58,7 +58,7 @@ alias ssh-copy-id='ssh-copy-id -i' alias gdb='gdb -q' # Group by 1 byte only with xxd: -alias xxd='xxd -g 1' +alias xxd='xxd -groupsize 1' [ -r "$HOME/.bash_utils/file.sh" ] && source "$HOME/.bash_utils/file.sh" [ -r "$HOME/.bash_utils/text.sh" ] && source "$HOME/.bash_utils/text.sh" diff --git a/%HOME%/.gdbinit b/%HOME%/.gdbinit index 58734c2..b025373 100644 --- a/%HOME%/.gdbinit +++ b/%HOME%/.gdbinit @@ -18,5 +18,5 @@ end define xxd dump binary memory /tmp/dump.bin $arg0 ((char *)$arg0)+$arg1 - shell xxd -g 1 /tmp/dump.bin + shell xxd -groupsize 1 /tmp/dump.bin end |