Welcome to our blog where we share some BSD Tips and Tricks with the wider community.
Bsd tips and tricks | January 25, 2021
leave(1) - remind you when you have to leave
By Kamil Rytarowski
leave +0001
Bsd tips and tricks | January 5, 2021
Add a new user
By Kamil Rytarowski
useradd -m joe && passwd joe
Bsd tips and tricks | December 7, 2020
Set your favorite pager
By Kamil Rytarowski
env PAGER=less man 1 intro
Bsd tips and tricks | November 30, 2020
finger(1) plan
By Kamil Rytarowski
echo “Rule the world!” > ~/.plan
Bsd tips and tricks | November 23, 2020
Show diff output in color
By Kamil Rytarowski
alias cpatch=‘sed -e “s/^+.$/
tput setf 6 bold
&tput sgr0
/” -e “s/^-.$/tput setf 4 bold
&tput sgr0
/"’
Bsd tips and tricks | November 16, 2020
Emulate clear in restricted environments
By Kamil Rytarowski
alias clr=‘printf “\033[H\033[J”’