Pythonでパッケージ等を作成しているときに、存在するすべてのディレクトリに再帰的に__init__.py
ファイルを作成するスクリプト。
find . -name '__pycache__' -prune -o -type d -exec touch {}/__init__.py \;
Go to list of users who liked
More than 1 year has passed since last update.
Pythonでパッケージ等を作成しているときに、存在するすべてのディレクトリに再帰的に__init__.py
ファイルを作成するスクリプト。
find . -name '__pycache__' -prune -o -type d -exec touch {}/__init__.py \;
Register as a new user and use Qiita more conveniently
Go to list of users who liked