mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 22:55:10 +01:00
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/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
|