|
|
Where is my domain name stored in the root filesystem? |
You can search every local file for the domain name string using the find command along with xargs for speed:find / -type f | xargs fgrep -l "domain" > /tmp/p.outXargs is a command line program that groups a bunch of fgreps and processes them all at once instead of one at a time.
<mschalit@pacbell.net>
| |
| [Append to This Answer] |
| Previous: |
|
| Next: |
|
| ||||||||