Created
September 19, 2025 08:50
-
-
Save tomesparon/8dfd81ffaf9d56c2024857be9d302deb to your computer and use it in GitHub Desktop.
RC FILES
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.inputrc | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward | |
| # ~/.bashrc | |
| # some more ls aliases | |
| alias ll='ls -alF' | |
| alias la='ls -A' | |
| alias l='ls -CF' | |
| #Drill down into unknown file directory with fzf | |
| alias sd="cd \$(find * -type d | fzf)" | |
| # ~/.bash_aliases | |
| # additional aliases for used tools | |
| alias dcmdump='/opt/dcm4che-5.11.0/bin/dcmdump' | |
| alias cdbin='cd /opt/dcmconf/bin/' | |
| alias cdlogs='cd /opt/dcmconf/logs/' | |
| alias cdconf='cd /opt/dcmconf/config/' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment