I\'m looking to run a Linux command that will recursively compare two directories and output only the file names of what is different. This includes anything th
On my linux system to get just the filenames
diff -q /dir1 /dir2|cut -f2 -d' '