Lars Schneider <larsxschneider@xxxxxxxxx> writes: >>> + find . | grep TWO/file1.txt && >>> + find . | grep TWO/File2.txt && >>> + find . | grep TWO/file3.txt && >> Not sure about the find | grep here either. > See answers above. These are not very good tests; they will match "OTWO/file1.txto", too. Besides, it is wasteful to run find three times. find ?* -print | sort >actual && cat >expect <<-\EOF && TWO/file1.txt ... EOF test_cmp expect actual or something like that instead? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html