Learn N Try

For all Lean Enthusiast

compare the size of file in two differenct directory

This script will pick file one by one and perform long listing of the file in currect directory and long listing on other directory so you can compare the size of files

for i in `ls`; do ls -l /Prod/Prod/MMSC/Out/$i; ls -l /archive/output/CoreNetwork/Interconnect/MMSC/20170323/$i; done