diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:10:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:10:42 +0300 |
commit | 446e3ca6d9c8093923bf62af00e0c40749e68d1e (patch) | |
tree | f7f58e2dde24f8b88921c3731497bf7686ea5935 | |
parent | gdb: print pretty on (diff) | |
download | linux-home-446e3ca6d9c8093923bf62af00e0c40749e68d1e.tar.gz linux-home-446e3ca6d9c8093923bf62af00e0c40749e68d1e.zip |
.bashrc: add xxd alias
-rw-r--r-- | %HOME%/.bashrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index afb5aeb..016232c 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -57,6 +57,9 @@ alias ssh-copy-id='ssh-copy-id -i' # Shut GDB up: alias gdb='gdb -q' +# Group by 1 byte only with xxd: +alias xxd='xxd -g 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" |