10 lines
269 B
Bash
10 lines
269 B
Bash
|
#!/bin/sh
|
||
|
sed -i \
|
||
|
-e 's/#fdf6e3/rgb(0%,0%,0%)/g' \
|
||
|
-e 's/#002b36/rgb(100%,100%,100%)/g' \
|
||
|
-e 's/#eee8d5/rgb(50%,0%,0%)/g' \
|
||
|
-e 's/#839496/rgb(0%,50%,0%)/g' \
|
||
|
-e 's/#fdf6e3/rgb(50%,0%,50%)/g' \
|
||
|
-e 's/#002b36/rgb(0%,0%,50%)/g' \
|
||
|
$@
|