dotties/.bashrc

21 lines
473 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2023-11-14 19:23:52 -06:00
simplefind() { find . -iname '*'"$@"'*'; }
simpleplay() {
find . -iname '*'"$@"'*' -print0 \
| xargs -0 mpv --no-audio-display \
;
}
2024-04-25 06:52:21 +00:00
command -v uname >/dev/null &&
case $(uname) in
Darwin)
command -v port >/dev/null && . /opt/local/etc/bashrc.mac
;;
FreeBSD)
[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
&& . /usr/local/share/bash-completion/bash_completion.sh
;;
esac \
;