Displaying 5 results from an estimated 5 matches for "udimg".
Did you mean:
udim
2014 Dec 02
7
Help with at Bash script
...| while read domain ; do echo $domain ; done ;
The sticking point is the 'while read' construct. Run just as 'tcpdum | awk'
I get this:
english.stackexchange.com.
www.urbandictionary.com.
www.urbandictionary.com.
www.urbandictionary.com.
www.urbandictionary.com.
api.mywot.com.
a.udimg.com.
a.udimg.com.
fonts.googleapis.com.
. . .
Run with the 'while read $domain ; do echo ' pipe nothing appears whatsoever.
What am I doing wrong?
--
*** E-Mail is NOT a SECURE channel ***
James B. Byrne mailto:ByrneJB at Harte-Lyne.ca
Harte & Lyne L...
2014 Dec 02
0
Help with at Bash script
...> The sticking point is the 'while read' construct. Run just as 'tcpdum | awk'
> I get this:
>
> english.stackexchange.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> api.mywot.com.
> a.udimg.com.
> a.udimg.com.
> fonts.googleapis.com.
> . . .
>
> Run with the 'while read $domain ; do echo ' pipe nothing appears whatsoever.
> What am I doing wrong?
while read domain; do
echo ${domain}
done < <(tcpdump -l -n -e port 53 | awk '{if ($14 ~ /A.*?/) p...
2014 Dec 02
1
Help with at Bash script
...d' construct. Run just as 'tcpdum |
>> awk'
>> I get this:
>>
>> english.stackexchange.com.
>> www.urbandictionary.com.
>> www.urbandictionary.com.
>> www.urbandictionary.com.
>> www.urbandictionary.com.
>> api.mywot.com.
>> a.udimg.com.
>> a.udimg.com.
>> fonts.googleapis.com.
>> . . .
>>
>> Run with the 'while read $domain ; do echo ' pipe nothing appears
>> whatsoever.
>> What am I doing wrong?
>>
>
> while read domain; do
> echo ${domain}
> done < &...
2014 Dec 03
0
Help with at Bash script
...gt; The sticking point is the 'while read' construct. Run just as 'tcpdum | awk'
> I get this:
>
> english.stackexchange.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> api.mywot.com.
> a.udimg.com.
> a.udimg.com.
> fonts.googleapis.com.
> . . .
>
> Run with the 'while read $domain ; do echo ' pipe nothing appears whatsoever.
> What am I doing wrong?
>
> --
> *** E-Mail is NOT a SECURE channel ***
> James B. Byrne...
2014 Dec 03
0
Help with at Bash script
...gt; The sticking point is the 'while read' construct. Run just as 'tcpdum | awk'
> I get this:
>
> english.stackexchange.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> www.urbandictionary.com.
> api.mywot.com.
> a.udimg.com.
> a.udimg.com.
> fonts.googleapis.com.
> . . .
>
> Run with the 'while read $domain ; do echo ' pipe nothing appears whatsoever.
> What am I doing wrong?
>
> --
> *** E-Mail is NOT a SECURE channel ***
> James B. Byrne...