13 lines
297 B
Bash
Executable file
13 lines
297 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;
|
|
|
|
sudo pacman -Sy;
|