fix syntax error in ~/.bash_aliases

This commit is contained in:
nodiscc
2020-03-15 21:55:34 +01:00
parent 4adc0f3fbf
commit 8b486c4318

View File

@@ -9,8 +9,8 @@ alias encrypt="gpg -c" # encrypt file with GPG
alias decrypt="gpg -d" # decrypt GPG encrypted file alias decrypt="gpg -d" # decrypt GPG encrypted file
alias chx='chmod a+x' # set execute permission alias chx='chmod a+x' # set execute permission
alias clipboard='xclip -selection c; notify-send --icon=gtk-paste "Copied to clipboard." 2>/dev/null' # send stdin to clipboard alias clipboard='xclip -selection c; notify-send --icon=gtk-paste "Copied to clipboard." 2>/dev/null' # send stdin to clipboard
function f { find ./ -name "*$1*" } # find files in the currect directory function f { find ./ -name "*$1*"; } # find files in the currect directory
function psg { ps -fp $(pgrep -f "$@") } # find running process matching a name function psg { ps -fp $(pgrep -f "$@"); } # find running process matching a name
#ls and grep aliases #ls and grep aliases
if [ -x /usr/bin/dircolors ]; then if [ -x /usr/bin/dircolors ]; then