๐ฉ CompareAugust 27, 20231 min read Systems Investigate Unix-LikeContentsCompare staffsCompare two jar files:diff -W200 -y <(unzip -vqq file1.jar | awk '{ if ($1 > 0) {printf("%s\t%s\n", $1, $8)}}' | sort -k2) <(unzip -vqq file2.jar | awk '{ if ($1 > 0) {printf("%s\t%s\n", $1, $8)}}' | sort -k2)
Comments