Iamnotageek
Expert Member
- Joined
- Dec 22, 2013
- Messages
- 3,825
- Reaction score
- 2,196
Hey guys,
Hope this is in the correct category.
What I want:
I want to run the command "ping 8.8.8.8 -t" and when I hit Ctrl-C I want it to write the data to a .txt file. ( So if I let it run for let's say 10 minutes, I want all that ping data in those 10 minutes copied to a .txt file when I quit the command ).
I've tried the following command:
However it just goes to the next line in the command prompt and does nothing.
Can anyone help perhaps?
Hope this is in the correct category.
What I want:
I want to run the command "ping 8.8.8.8 -t" and when I hit Ctrl-C I want it to write the data to a .txt file. ( So if I let it run for let's say 10 minutes, I want all that ping data in those 10 minutes copied to a .txt file when I quit the command ).
I've tried the following command:
Code:
ping 8.8.8.8 -t > pinginfo.txt
Can anyone help perhaps?