I have this script its purpose is to touch all files with jsp extentions in all dir's, sub and sub -sub dir's.
This example does not work and I have gotten the idea to do it this way from an example that was posted on this forum to remove files older than a certain time.
I would be greatfull for any assistance
Thanks Johan
#!/bin/sh
LIST=`find /webuser/ -name *.jsp´
for FILE in $LIST
do
touch $FILE
done
This example does not work and I have gotten the idea to do it this way from an example that was posted on this forum to remove files older than a certain time.
I would be greatfull for any assistance
Thanks Johan
#!/bin/sh
LIST=`find /webuser/ -name *.jsp´
for FILE in $LIST
do
touch $FILE
done