Skip to content
Permalink
9d60e49744
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 (14 sloc) 285 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
sleep 3
clear
done