Untitled
unknown
plain_text
4 years ago
133 B
7
Indexable
for file in *
do
if [[ -d "$file" ]]; then
cd $file
mkdir migrations
touch migrations/__init__.py
cd ..
fi
done
Editor is loading...
for file in *
do
if [[ -d "$file" ]]; then
cd $file
mkdir migrations
touch migrations/__init__.py
cd ..
fi
done