Moves binaries for use with gnu stow

This commit is contained in:
Jonathan Hodgson 2019-07-30 14:06:10 +01:00
parent f528ba793c
commit 4fd9f4809b
89 changed files with 0 additions and 0 deletions

32
bin/.bin/addhost Executable file
View file

@ -0,0 +1,32 @@
#!/usr/bin/bash
if [ $1 ]; then
case $1 in
-h|--help)
echo "Add entrys to your hosts file"
echo ""
echo -e "addhost domain.com\t\t\t\tadds domain.com to your hosts and points to local machine"
echo -e "addhost (alex|aaron|jonathan|vps01|vps02) domain.com\tadds domain.com to your hosts and points to persons machine"
;;
alex)
echo -e "10.0.1.201\t$2" | sudo tee -a /etc/hosts
;;
aaron)
echo -e "10.0.1.202\t$2" | sudo tee -a /etc/hosts
;;
jonathan)
echo -e "10.0.1.203\t$2" | sudo tee -a /etc/hosts
;;
vps01)
echo -e "130.185.147.131\t$2" | sudo tee -a /etc/hosts
;;
vps02)
echo -e "130.185.147.137\t$2" | sudo tee -a /etc/hosts
;;
*)
echo -e "127.0.0.1\t$1" | sudo tee -a /etc/hosts
;;
esac
else
echo "You need to add at least a domain"
fi