mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
* OMB - Major Refactor - Aliases and completions now works like plugins (need to enabled in .bashrc) - Removed the compatible check in spectrum.sh, OMB now works with Bash v3.x like the old days. - Removed core plugin, added those bash functions into base.sh and load during startup. - Updated OSH template for new installations - Added history config and few other stuff from #17 @TODO: Added a shell script to update old version of .bashrc to new one. * Fixed ShellCheck issues * Fixed ShellCheck issues
31 lines
1.7 KiB
Bash
31 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
# ---------------------------------------------------------------------------
|
|
#
|
|
# Description: This file holds all general BASH aliases
|
|
#
|
|
# For your own benefit, we won't load all aliases in the general, we will
|
|
# keep the very generic command here and enough for daily basis tasks.
|
|
#
|
|
# If you are looking for the more sexier aliases, we suggest you take a look
|
|
# into other core alias files which installed by default.
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# -----------------------------
|
|
# 1. MAKE TERMINAL BETTER
|
|
# -----------------------------
|
|
|
|
alias cp='cp -iv' # Preferred 'cp' implementation
|
|
alias mv='mv -iv' # Preferred 'mv' implementation
|
|
alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation
|
|
alias ll='ls -lAFh' # Preferred 'ls' implementation
|
|
alias less='less -FSRXc' # Preferred 'less' implementation
|
|
alias nano='nano -W' # Preferred 'nano' implementation
|
|
alias wget='wget -c' # Preferred 'wget' implementation (resume download)
|
|
alias c='clear' # c: Clear terminal display
|
|
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths
|
|
alias show_options='shopt' # Show_options: display bash options settings
|
|
alias fix_stty='stty sane' # fix_stty: Restore terminal settings when screwed up
|
|
alias cic='set completion-ignore-case On' # cic: Make tab-completion case-insensitive
|
|
alias src='source ~/.bashrc' # src: Reload .bashrc file
|