mirror of https://github.com/hrfee/jfa-go
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
176 B
8 lines
176 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
for f in $1/*.html; do
|
||
|
for color in neutral positive urge warning info critical; do
|
||
|
sed -i "s/~${color}/~${color} dark:~d_${color}/g" $f
|
||
|
done
|
||
|
done
|