#!/bin/sh
pwd
ls test*php
ls -l test*php
cat test.php
ln -s test.php testphp
ls -l test*php
cat testphp
ls -la testphp
find . -type l
find . -type l -exec ls {} \;
find . -type l -print0 | xargs -I{} -0 file {} ./test.php
find . -type l -print0 | xargs -I{} -0 fgrep "0402" {} 
find . -type l -print0 | xargs -I{} -0 fgrep -n "0402" {} 
find . -type l -print0 | xargs -I{} -0 fgrep -c "0402" {} 
find . -type l -print0 | xargs -I{} -0 cat {} | grep "0402" 
find . -type l -print0 | xargs -I{} -0 cat {} | egrep -n "0402" 
find . -type l -print0 | xargs -I{} -0 cat {} | egrep -c '[0][4][0][2]' 
exit
