10 lines
274 B
Bash
Executable file
10 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
sudo sed -i \
|
|
-e "/^\[options\]$/,/^\[/{" \
|
|
-e "s/^#\?\(Color\)$/\1/;" \
|
|
-e "/^# Misc options$/{" \
|
|
-e "a ILoveCandy" \
|
|
-e "};" \
|
|
-e "}" \
|
|
-e "/^#\?\[multilib\]$/,/^$/{ s/^#\?\(.*\)$/\1/; }" \
|
|
/etc/pacman.conf
|