bash: sgc angelegt

This commit is contained in:
Michael Grote 2021-11-09 10:55:32 +01:00
parent aabb00096a
commit 33b239aee5

View file

@ -12,6 +12,23 @@ ssh() { #() ist die kurzform von function
tmux rename-window "$*" tmux rename-window "$*"
command ssh "$@" command ssh "$@"
} }
function sgc {
case "$1" in
--help)
echo "Suche in der kompletten git-history nach '$1'"
echo "sgc = search git commit"
echo "sgc <suchbegriff>"
;;
"")
echo "Suchbegriff fehlt..."
;;
*)
git grep "$1" $(git rev-list --all)
esac
}
function m2m { function m2m {
if [[ "$1" == "--help" ]]; then if [[ "$1" == "--help" ]]; then
echo "Sende Datei '$2' per Mail; Betreff = '$1'" echo "Sende Datei '$2' per Mail; Betreff = '$1'"