obsd-bkp/dotfiles/dotfolder/.local/bin/upcvs

31 lines
457 B
Bash
Executable File

#!/usr/bin/env sh
upsrc(){
echo "Changing to the src directory."
cd /usr/src
cvs -q up -Pd -rOPENBSD_7_1
echo "Done!"
}
uports(){
echo "Changing to the ports directory."
cd /usr/ports
cvs -q up -Pd -rOPENBSD_7_1
echo "Done!."
}
upfaq(){
echo "Changing to the faq directory."
cd $HOME/Templates/unixlike/openbsd/projects
cvs update -P www/faq
echo "Done!."
}
upsrc && uports && upfaq && cd && exit 0