Untitled
Anonymous
plain_text
10/29/2021 2:08 PM
180 B
19
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