Forum: Shell Scripting Nov 18th, 2008 |
| Replies: 6 Views: 4,146 I used Google with the following terms:
resolv.conf and dhcp
There were too many results to link and I do not have a machine to test on. But, plenty of talk on how dhclient overwrites resolv.conf... |
Forum: Shell Scripting May 9th, 2007 |
| Replies: 2 Views: 1,375 `find` command.
# find / -name '*.exe' -exec strings -f {} \; | grep ocx |
Forum: Shell Scripting May 9th, 2007 |
| Replies: 2 Views: 5,220 Wrong category issue was fixed. Hurrah! |
Forum: Shell Scripting May 9th, 2007 |
| Replies: 2 Views: 5,220 Here is a little spinner thing for the command line, used when your current bash script is waiting on a background/system process.
The weird character is ^H or a backspace. |
Forum: Shell Scripting May 7th, 2007 |
| Replies: 3 Views: 1,689 1) touch file1_temp.tmp
2) reports_done = `wc -l file1_temp.tmp`
3+4) I do not have a terminal in front of me, run a for loop sounds easy.
# read in file1.txt to variable $lines
lines=`cat... |