1
0
Fork 0
mirror of https://github.com/sbrl/bin.git synced 2018-01-10 21:33:46 +00:00

Add alias for mkfifo

This commit is contained in:
Starbeamrainbowlabs 2016-09-12 21:25:10 +02:00
parent 31c3ca1c8c
commit ec78886b96

View file

@ -39,6 +39,9 @@ alias less='less -R'
# Alias to clear the screen for real
alias cls='printf "\033c"'
# mkfifo -> mkpipe
alias mkpipe='mkfifo'
# allow us to create a directory and immediately move into it
function mcd { mkdir -pv "$1" && cd "$1";}