9 lines
205 B
Bash
9 lines
205 B
Bash
|
#!/bin/bash
|
||
|
indicator="set clipboard";
|
||
|
configFile="/etc/vimrc";
|
||
|
|
||
|
if ! grep "\b$indicator\b" "$configFile" > /dev/null
|
||
|
then
|
||
|
echo "$indicator+=unnamed,unnamedplus" | sudo tee /etc/vimrc > /dev/null;
|
||
|
fi;
|