1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 02:25:11 +01:00
This commit is contained in:
Michiel Scholten
2014-05-05 20:59:47 +02:00
parent 8bf3aa5a47
commit 6dc77fcac4
6 changed files with 100 additions and 0 deletions

6
bin/dirdiff Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
#ls -lR $1 > /tmp/diff_01
#ls -lR $2 > /tmp/diff_02
ls -logR $1 > /tmp/diff_01
ls -logR $2 > /tmp/diff_02
diff /tmp/diff_01 /tmp/diff_02 |less