Forum: Shell Scripting Sep 8th, 2009 |
| Replies: 2 Views: 370 Thanks that did the trick!
Considered resolved!!!! |
Forum: Shell Scripting Sep 8th, 2009 |
| Replies: 2 Views: 370 I have a helper script that will grab weblogs for a particular domain, if called by itself from the MS-DOS command line it works as intended, but I'd like to call another script to call this script... |
Forum: Shell Scripting Jul 3rd, 2009 |
| Replies: 2 Views: 552 need more info.... is this a windows system, unix, web app? |
Forum: Shell Scripting Jul 3rd, 2009 |
| Replies: 4 Views: 743 well here is a sample of a loop in bash shell:
#!/bin/bash
COUNT=6
# bash while loop
while [ $COUNT -gt 0 ]; do
echo Value of count is: $COUNT
let COUNT=COUNT-1
done |