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