GalerieBlogUnity3D ExamplesKontaktSitemapFullsitemap

compare to directories for file presence

I came to the situation while building a php package, that I needed to know which new files I have added.

You can use diff for that :-)

# show changed files:
diff -rq php5 php5-20100428-144057

# show only added or removed ones:
diff -rq php5 php5-20100428-144057 | grep ^Only
 Permalink

Kommentare

Keine (weiteren) neuen Kommentare erlaubt.