8 lines
186 B
Bash
Executable File
8 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cp /etc/resolv.conf /home/tyrelsouza/prev_resolv.conf
|
|
|
|
echo > /etc/resolv.conf
|
|
echo "nameserver 10.0.2.22" >> /etc/resolv.conf
|
|
echo "search addgene.org" >> /etc/resolv.conf
|