scmuser created the topic: find c file recursivly and copy to directory
Write a shell script to find c file recursivly and copy to one common directory?
rajeshkumar replied the topic: Re: find c file recursivly and copy to directory
following program will serve your purpose…
#!/bin/sh
counter=0
if [ $# -eq 0 ]
then
for file in `find ./os -name “*.c”`
do
cp $file /root/Release/Rajesh
echo $file
counter=`expr $counter + 1`
done
else
echo “No Argument passed”
fi
echo “Number of files found=$counter”
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
Latest posts by Rajesh Kumar (see all)
- Implementing Managed IT Services: A Step-by-Step Guide - August 30, 2024
- DevOps Foundation Certification - August 29, 2024
- SRE Foundation Certification - August 29, 2024