AIX is IBM's Unix implementation, which it develops for a number of its products, notably the IBM SP series. Other manufacturers, such as Motorola, also produce hardware that runs AIX. AIX incorporates elements of System V, BSD, and OSF/1, but includes enough unique features to make using, and especially administering, AIX somewhat different from working with other Unix implementations. Nevertheless, recent versions are compliant with most Unix standards.
Thursday, December 16, 2010
How to compare directories - AIX
Hi Folks,
Here is the script to compare the Directories in AIX.
for i in `cat /tmp/'
do
ls -l $i
if [ $? -eq 0 ]
then
echo "Found same filename $i"
fi
done
We have more options to compare the directories. Check the man page for dircmp too...
No comments:
Post a Comment