Is there a simple way (i.e. 100% free, including using the Terminal) to determine which files in one folder are NOT in another, disregarding any extensions the files in each folder have?
One way I thought I could approach this, using the Terminal:
Only problem is that this does NOT ignore extensions, so all the lines in both text files will be reported as different. This is NOT what I want.
One way I thought I could approach this, using the Terminal:
Code:
ls /path/to/first/folder > folder1.txt
ls /path/to/second/folder > folder2.txt
diff folder1.txt folder2.txt
Only problem is that this does NOT ignore extensions, so all the lines in both text files will be reported as different. This is NOT what I want.