Skip to content
Permalink
845cc67f18
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (15 sloc) 303 Bytes
#!/bin/bash
/etc/init.d/apache2 start
for (( ; ; ))
do
echo
echo "-------------------------"
echo " Wydah Started"
echo "-------------------------"
echo
echo -n "IP: "
ifconfig eth0|grep inet[^6]|cut -d " " -f 10
/root/app/wydah.py
sleep 2
clear
done