• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

I want to compare directories

TheSiege

Diamond Member
i have my mp3s on my hard disk and on my mp3 player, but my mp3 player is missing like 4 mp3s, and i have my mp3s sorted my artist then albumn and then finally the songs on that albumn, i need an app that will tell me what mp3s are in one dir/sub-dir and not in the other

thanx
 
diff would do the job. Example:

$ find dir0
dir0
dir0/foo
dir0/bar

$ find dir1
dir1
dir1/foo

$ diff -r dir0 dir1
Only in dir0: bar
 
Back
Top