A Web interfaces is almost used by routers and many other sophisticated programs such as webmin. However, why go for a web interface or execute commands from web page? For automation purpose, you need to use a web interfaces. Another advantage is you can access your web-based interface from any computer, running any operating system, anytime in the world :D
In this first part, you will see how to use simple bash (shell) script from web page. In order to execute commands or shell script from a webpage you need:
- CGI support with Apache / lighttpd web server.
- I'm assuming that you have a properly configured web server.
You need to store program in cgi-bin directory. If you are using Debian Linux default location for cgi-bin directory is /usr/lib/cgi-bin. Under Red Hat / Fedora it is /var/www/cgi-bin. Use text editor such as vi to create a first.cgi program:
$ cd /usr/lib/cgi-bin $ vi first.cgi
first.cgi code listing:
#!/bin/bash echo "Content-type: text/html" echo "" echo "<html><head><title>Bash as CGI" echo "</title></head><body>" echo "<h1>Hello world</h1>" echo "Today is $(date)" echo "</body></html>"
Save and close the file. Setup execute permission on the script:
$ chmod +x first.cgi
Fire up your web browser and test the script, for example type url http://localhost/cgi-bin/first.cgi or http://your-ip/cgi-bin/first.cgi
You need to send headers, first three lines are almost same for all your script:
- #!/bin/bash : First line tell Linux/UNIX how file first.cgi should be run. So it will use /bin/bash interpreter to execute your rest of program.
- echo "Content-type: text/html" : Send html headers, you must include this line.
- echo "" : Send a blank line, you must include this line.
Rest is html code. Take a close look at following echo command:
echo "Today is $(date)"
It use shell feature called command substitution. It allows the output of a command to replace the command name:
$(command)
Your bash shell performs the expansion by executing command and replacing the command substitution. So date command get executed by replacing the its output.
Real life example
Here is simple script that collects system information. Create script in cgi-bin directory:
#!/bin/bash echo "Content-type: text/html" echo "" echo "<html><head><title>Bash as CGI" echo "</title></head><body>" echo "<h1>General system information for host $(hostname -s)</h1>" echo "" echo "<h1>Memory Info</h1>" echo "<pre> $(free -m) </pre>" echo "<h1>Disk Info:</h1>" echo "<pre> $(df -h) </pre>" echo "<h1>Logged in user</h1>" echo "<pre> $(w) </pre>" echo "<center>Information generated on $(date)</center>" echo "</body></html>"
Save and close the file. Setup execute permission on script:
$ chmod +x script.cgi
Fire up web browser and test it (http://localhost/cgi-bin/script.cgi):

Next time you will see:
- How to use and place form elements (from POSTs and GETs)
- Cookies in your environment
- Use of perl scripting
- And finally use of special tools
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 38 comments… read them below or add one }
You need to HTML-escape (add ampersands) your command output, or you might be accidentally providing a means for cross-site-scripting attacks.
Randal, thanks, I will cover this later in security issues :) I appreciate your post.
I am struggling with creating a empty file a bash based cgi script. the filename should coome from information passed to the cgi from a forum.
help?
007ben, I hope you have write permission to create a empty file.
If you just want to retrieve value pass to url for example http://mydom.com/cgi-bin/script.cgi?filename
Then use $1 in script to get filename i.e.
touch $1
So if you are using url
http://mydom.com/cgi-bin/script.cgi?file=/tmp/abc.txt
then following shell code should find out value of file:
LINE=`echo $QUERY_STRING | sed ‘s/&/ /g’`
for i in $LINE
do
f1=$(echo $i | cut -d= -f1)
v1=$(echo $i | cut -d= -f2)
done
echo “Var is f1 and value is $v1″
that last bit was the trick!
the forum was not passing the info with variable name.
and when it did before the script could not pick it up.
THANK YOU!
hello sir.,
I am doing my project in linux.I want to know how to execute useradd and iptables commands in linux from PHP.How can i use the form data as arguments to the program.Please give the solution.
S.Sujaikumar
Use system(), exec() commands. For example to execute ls -l command you can write code:
$out = system(“ls -l”);
echo $out;
Suppose you are using url http://localhost/page.php?user=raj
Then you can use following code to get value of user:
$u = $_GET['user'];
$cmd = “adduser “. $u;
$out = system($cmd);
I m doing my project in my university network, which means that I m not the root. Hence I dont have any writtin permissions in cgi-bin directory. Is ther any other way out? I wud be greatfull if you can lemme knw the solution.
thanks a lot
vasanth
nixcraft is always best :-) Thanks, I am used to BASH, and your helps are always good for me. Is there any doc which tells more about cgi and bash together? like accepting user inputs, database access and all, will be a great help for me.
Thanks,
Jadu, India
Jadu,
Although bash is handy, it is recommended that you use python or perl for cgi and sys admin related task.
HTH
Hi,
I know this topic is a bit old, but I think it could be useful to alter the comment of nixcraft to be like this :
#!/bin/bash
echo "Content-type: text/plain"
echo
LINE=`echo $QUERY_STRING | sed 's/&/ /g'`
for i in $LINE
do
f1=$(echo $i | cut -d= -f1)
v1=$(echo $i | cut -d= -f2)
typeset -r $f1=$v1
done
echo "hard coded content of t = '$t'"
Like this, you are generating shell variables that you can use when you know in advance their name (as shown in the last line). It still lacks post support and decoding of escaped character but for simple script it can useful.
hth
Hello,
i want to run a “tail -f ” command using cgi to view unix log files progress in real time from browser.
any ideas? or cgi script can do it?
Hi
I have writen a bash script for work that accesses sevral servers and collect key information about them and creates a web page with the info.
I would like to be able to run the shell script from the web page.
Just to be able to do ./script.sh $1
Is this possible
I want to open konsole and exute telnet 10.10.10.1 and the konsole be opened from web page
Hi
I have a bash script here that will create email accounts for each person that will request for 1.
I want this script to be web based is this possible?
Anyone can help me…
Thanks
Hello i want to know the way to creating a directory in linux through browser execution using php. thnx in advance
hello
i want to run a simple mkdir command in cgi script which will take directory name from html page
pl help.
Hello,
I want to install web server with php support. what are the steps to be taken??
This is on Linux!!
Pliz help!!
I get this on the /var/log/httpd/error.log
Syntax error in type map, no ‘:’ in /var/www/cgi-bin/script.cgi for header “”\n
i want to execute vncviewer in web page.what should I have to do????????
does it work on mac os x?
Yes, it should work under Mac OS X too
yepp works on mac, just the path of the cgi is different: /Library/Webserver/CGI-Executables/
but thats not what i was looking for :)
maybe u can help me / maybe have heard of someting like this:
i want to execute commands as if i would be a ssh-console but for http, u know what i mean?
This is going little offtopic. I suggest you post it to our forum along with shell code if you have any and will continue discussion at our forum http://nixcraft.com/
hi, my server is using CentOS.. where to put the cgi?
I don’t understand anything bout cgi..
but I want to execute a bash command from web page..
like mkdir or unzip etc..
please help me :)
thx
Hi,
I was happy to find your information. I was able to add a line to start a linux program, with the right attributes. For developing a script within a webpage with buttons I moved to a Ubuntu PC because I was developing on an embedded linux board.
Since I moved to the Ubuntu system your example still works but the line I placed in your example script does not.
Can you help me out what could be my problem ? If you want to take a look, please send me a message and I will send you my problem.
The command works from the command line in Ubuntu but not from the script…
TnX,
Ben
Hi nixcraft, thanks for the Post.
I’m very interested in the next topic in line after this. I notice this is really old, and sorry to dig up such an old topic.
But, I’ve looked all over and can not find the next topic: How to use and place form elements (from POSTs and GETs)
Can you please let me know if you ever wrote that one? Thanks!!
I’d really like to read about that… more in dept how to control unix commands from a web page/url.
hello sir.,
I am doing my project in linux.I want to know how to execute useradd and iptables commands in linux from PHP.How can i use the form data as arguments to the program.Please give the solution.
child
Is there a way to execute a Linux command in index.html? Say for instance $HOSTNAME?
Hi this site is just great.. Thumbs up nixcraft
I am writing an html page to to display the output of a shell script .
but i need to pass usename & password from html page to shell script
please help me to resolve this problem
I am trying to execute perl script which accepts a parameter,through Perl CGI as
system(“./remConnect.pl $var”);
print “$?  ”;
$? returns 512. Can you please give a solution to make it run?
Thanks
hi..
wat r the websites to run unix commands
I Need to download Executing Linux / UNIX commands from web page
Whats a CGI ? i am new to this.. Please reply
My linux command is having a UI output.can i get that into html..
Thank you !!! very much my friend it’s a wonderful article.