Unix shell script project


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unix shell script project
# 1  
Old 02-09-2010
Unix shell script project

Hi guys, i am thinking of doing my final project on Unix shell scripting. Can anyone give me some sort of topics on unix shell scripting project that I can do in my final project.

Cheers....
# 2  
Old 02-09-2010
You could write a script that examines an Apache web server log file and then based on defined criteria determines if there are robots spidering the site without a user agent that identify them as bots.

You could write the IP addresses to a file with the probability that the IP address is a bot, based on a scoring criteria.

You could do the classification using Bayes theory and encode this into your methodology.

Then, when finished, you can post here Smilie

We will use it on our log files !
# 3  
Old 02-09-2010
That's a cool answer Neo. I kind of figured that's where you were headed when I started reading. Smilie It's always good to try and develop something, even for a project or homework, that is useful.

gsb1bee - Give us a little more detail. How familiar are you with scripting? What's a repetative task that you'd like to automate? Or some kind of processing that you'd like to do?
# 4  
Old 02-09-2010
... and if it was in PHP with a configurable web interface for settings, ignore lists, scoring weights, etc. that would be even better Smilie
# 5  
Old 02-09-2010
Thanx Neo and dday for your ideas and suggestionsSmilie.

I did bash scripting 6 months ago and found very interesting and so thought of doing a final project on it because it is now very demanding in industry. I am not an advanced in scripting but can go through basic stuffs on it. I found Neo's idea very interesting but the thing is I am not that good at Apache and I want to do my scripting on Open Solaris OS.

What I thought to do th project based on combination of Shell script and ITIL or Shell scripting data loading but still I am unable to get my head around what is the good idea that I should use to automate the shell script in any area so that I can make it simple and keep it special. I am looking for the project which is not much much complicated but very simple. The project should be something that I can ask a question.
# 6  
Old 02-10-2010
Well, the Apache suggestion would really just be scanning a log file and then doing some intelligent processing. (btw Neo, how would you identify a BOT? Just curious)

Maybe you could run some shell commands to check the size of certain folders and then back them up to a compressed file and clean them out based on a threshold. Something along that line. I know it's been done before, but if you do it on your own, it's a good learning tool on logic and capturing data in a variable.
# 7  
Old 02-10-2010
Quote:
Originally Posted by dday
Well, the Apache suggestion would really just be scanning a log file and then doing some intelligent processing. (btw Neo, how would you identify a BOT? Just curious)
.
That's the hard part - developing the method. When you have a solid method/plan, the coding is generally not very hard.

If I tell you how to do it, there is very little hard work to do Smilie

It is not easy to do (the logic) because you need to become familiar with detection theory. Signature detection? Anomaly detection? Hybrid (both)?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to pass Oracle sql script as argument to UNIX shell script?

Hi all, $ echo $SHELL /bin/bash Requirement - How to pass oracle sql script as argument to unix shell script? $ ./output.sh users.sql Below are the shell scripts and the oracle sql file in the same folder. Shell Script $ cat output.sh #!/bin/bash .... (7 Replies)
Discussion started by: a1_win
7 Replies

2. Shell Programming and Scripting

How can i run sql queries from UNIX shell script and retrieve data into text docs of UNIX?

Please share the doc asap as very urgently required. (1 Reply)
Discussion started by: 24ajay
1 Replies

3. Shell Programming and Scripting

Learning project ideas - shell, python, UNIX tools, system administration

Hi guys, I am currently working as a system administration engineer, administering telecom applications on linux/unix platforms. I want to learn new things and improve the ones that i have and for this i though to really work on some project or something but i lack of ideas. I want to be... (2 Replies)
Discussion started by: capitanui
2 Replies

4. News, Links, Events and Announcements

A new project was posted on The UNIX and Linux Forums project board.

A new project was posted on your project board. Project title: Bash Shell Tutoring Estimated Budget: $50/hr Start date: Immediately Required skills: Linux, Bash, Shell, UNIX I work as a datawarehouse designer and developer. Although I usually stick to the role of an analyst,... (0 Replies)
Discussion started by: Neo
0 Replies

5. Shell Programming and Scripting

FTP from windows to unix server using unix shell script

Hi, Is it possible to ftp a huge zip file from windows to unix server using unix shell scripting? If so what command i need to use. thanks in advance. (1 Reply)
Discussion started by: Shri123
1 Replies

6. Shell Programming and Scripting

awk, shell script reverse engineering app generator - project

Hi, this is fantastic forum for shell programming and scripting, so please let me to introduce you with my very old concept to have web form/s with radio, select, input fields and have an application generating valid, syntax error free scripting code. The same or alike questions are asked... (2 Replies)
Discussion started by: darius2
2 Replies

7. Shell Programming and Scripting

project idia in shell

could any one provide me any new real time project idea in shell scripting i am learning shell script and wants to do some real time development . (1 Reply)
Discussion started by: useless79
1 Replies

8. AIX

Difference between writing Unix Shell script and AIX Shell Scripts

Hi, Please give me the detailed Differences between writing Unix Shell script and AIX Shell Scripts. Thanks in advance..... (0 Replies)
Discussion started by: haroonec
0 Replies

9. Programming

unix project

hi, i need to do a unix project.. can anyone suggest a good project.. something other than chat,and so on (1 Reply)
Discussion started by: chittra
1 Replies

10. Shell Programming and Scripting

How to run unix commands in a new shell inside a shell script?

Hi , I am having one situation in which I need to run some simple unix commands after doing "chroot" command in a shell script. Which in turn creates a new shell. So scenario is that - I need to have one shell script which is ran as a part of crontab - in this shell script I need to do a... (2 Replies)
Discussion started by: hkapil
2 Replies
Login or Register to Ask a Question