diff options
author | Luneji <61687883+Luneji@users.noreply.github.com> | 2020-03-02 11:55:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 11:55:26 +0100 |
commit | daf3d081e68738868276e40cb1b4db0158e200b2 (patch) | |
tree | 99eac5f949970212974c1d28eaa7ab1067f56620 /script.sh | |
parent | 97df7af813729588d0919f92c6a25268e4c31497 (diff) |
Delete script.sh
Diffstat (limited to 'script.sh')
-rw-r--r-- | script.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/script.sh b/script.sh deleted file mode 100644 index aca8ed0..0000000 --- a/script.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -while : -do - - sudo tcpdump -i eth1 -nn -c1 -A src 192.168.52.19 -w capture.pcap - sudo tcpdump -r capture.pcap > grostas - cat grostas | cut -d" " -f1 >> heure.txt - cat grostas | cut -d" " -f2 >> protocole.txt - cat grostas | cut -d" " -f3 >> source.txt - cat grostas | cut -d" " -f5 >> destination.txt - tail -n1 heure.txt - tail -n1 protocole.txt - tail -n1 source.txt - tail -n1 destination.txt -done - - - |