scmuser created the topic: identical file validation using shell script?
Device a script that accepts two directory names, bar1 and bar2, and deletes those files in bar2 which are identical to their namesakes in bar1.
rajeshkumar replied the topic: Re: identical file validation using shell script?
Solution:
#!/bin/bash
cd $1
for file in * ; do
if [ -f ../$2/$file ] ; then
cmp $file ../$2/$file >/dev/null 2>/dev/null && rm ../$2/$file
fi
done
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
- Terraform Tutorial with Google Cloud – Create Single VM & Network - May 17, 2022
- Terraform Tutorial with Google Cloud – Create Single VM - May 17, 2022
- Google cloud Platform Authentication Method with Terraform - May 17, 2022