8 lines
146 B
Bash
8 lines
146 B
Bash
|
python .github/add-headers.py
|
||
|
python .github/replace.py
|
||
|
|
||
|
for file in *; do
|
||
|
[[ -f "$file" ]] && mv "$file" "${file,,}" 2>/dev/null
|
||
|
done
|
||
|
exit 0
|