This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# 2 つのディレクトリ中のパーミッション, 所有者を一覧化し, | |
# お互いに差分が無いか出力する. | |
# | |
# Author: Yuya Takeyama | |
if [ "$1" = "" -o "$2" = "" ]; then | |
echo "Usage: `basename $0` file1 file2" | |
exit 1 |