My client tells me they have cloned a VM in VMWare of an Ubuntu Linux server. Now it's my job to get into all the files and find out what still has the old server name of "bishop" and change it to something else. Also, the IP address is changed and I need to search for that too.
How would you typically use find, grep, awk, or sed to find these files and then change them rapidly? In the end, I want to make a Bash script.
Of course, I'm not expecting you to tell me every file, but just want to know the technique for finding files with "x" in it and then switching that rapidly with "y".
I'd actually strongly suggest that you make this a TWO step operation:
Find the files with the old hostname and old IP:
find / -print | xargs egrep -l 'oldhost|10.10.10.10' > filelist
Then edit the resulting list and remove any that you know one should not change.
Then use the resulting list, put it in a shell script and doing something like the following command sequence using the filelist as input:
.