find /path/to/base/dir -type d -exec chmod 755 {} +
ファイルのみの権限を変更したい場合:
find /path/to/base/dir -type f -exec chmod 644 {} +
再帰的全ての権限を変更したい場合:
$ chmod 0644 -R [dir]
find /path/to/base/dir -type d -exec chmod 755 {} +
find /path/to/base/dir -type f -exec chmod 644 {} +
from pprint import pprint record = {'kinesis': {'data': 'test hoge ...'}} pprint record
git rm -r --cached .
git add .
git commit -m "fixed untracked files"