| 1. |
Solve : Stuck!? |
|
Answer» Ok, I was wondering how to get the reply from this PING to be output to a text file: Ok, I was wondering how to get the reply from this ping to be output to a text file Try using redirection: Code: [Select]ping -n 1 xxx.xxx.xxx.xxx > ping.txt Code: [Select]ping -n 1 xxx.xxx.x.x | find /i "reply from" > ping.txt Redirection can be a double edged sword. Some programs query the user for additonal information. The query can get buried in the redirected output. yup that got it! thanks! |
|