This repository contains a collection of bash scripts that automate or otherwise help accelerate some typical day to day activities related, among other things, to:
- navigating file system and working with files
- working with media material
- performing some helpful programming tasks
E.g. in ~/bin:
cd ~/bin
git clone https://github.com/janwychowaniak/shell-utils.git
And then .bashrc might be appended with the following:
[[ -f "$HOME/bin/shell-utils/jw_aliases.sh" ]] && . "$HOME/bin/shell-utils/jw_aliases.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__fs.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__fs.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__media.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__media.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__mediaff.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__mediaff.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__mediaim.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__mediaim.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__misc.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__misc.sh"
[[ -f "$HOME/bin/shell-utils/jw_functions__prog.sh" ]] && . "$HOME/bin/shell-utils/jw_functions__prog.sh"