Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

Reads log files

// Map directory structure and then read logs extract results.

!#/usr/bin/bash

for line in `ls /netapp/XXXXXX0/XXXXXX_logs`
	do 
	for line2 in `ls  /netapp/XXXXXX0/XXXXXX_logs/$line`
			do  echo /netapp/XXXXXX0/XXXXXX_logs/$line/$line2 
	done	
done | grep 2007-11-29 > results.dat

!#/usr/bin/bash
for res in `cat results.dat`
 do
 echo -n $res 
 echo -n " "
 grep -c ",i," $res/*
done

PHP echo with URLencode

<? echo urlencode($row_name['column'])?>

PHP echo date

<?php echo date('d/m/Y',strtotime($row_name['column'])); ?>
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS