From 3108d3d234696623e9fa05946064678eef0be43f Mon Sep 17 00:00:00 2001 From: jon Date: Fri, 21 Aug 2020 08:25:56 -0500 Subject: [PATCH] Added short find function and alias --- bash/.bashrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bash/.bashrc b/bash/.bashrc index 2d9f3b0..0a3e21f 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -29,6 +29,12 @@ alias ip='ip -c' #alias s='sudo $(history -p !!)' alias s='sudo' +## function and alias for short find +short_find() { + find ./ -iname "*${1}*" +} +alias f=short_find + #not sure why fedora doesnt set this or what it might break but here we go export XDG_CONFIG_HOME=$HOME/.config