Skip to content

Instantly share code, notes, and snippets.

View hrix's full-sized avatar

Hirai Sumito hrix

  • eA
  • Kyoto, Japan
View GitHub Profile
@hrix
hrix / statdiff.sh
Last active August 29, 2015 14:03 — forked from yuya-takeyama/statdiff.sh
#!/bin/sh
#
# 2 つのディレクトリ中のパーミッション, 所有者を一覧化し,
# お互いに差分が無いか出力する.
#
# Author: Yuya Takeyama
if [ "$1" = "" -o "$2" = "" ]; then
echo "Usage: `basename $0` file1 file2"
exit 1