SomeNet
/
public repos
/
pub
/
jan
/
netsec2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
finish exercise3
[pub/jan/netsec2.git]
/
exercise2
/
task2
/
autocorrelate.sh
1
#!/bin/sh
2
3
for file in large_flow_*.dehexed.csv ; do
4
for field in IPID Protocol "Dest port"; do
5
echo -n "$file, $field: "
6
../../autocorr.py --input $file --field "$field"
7
done
8
done