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