You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
cat $1 | sed -n "$5" | docker run --rm -i \
|
|
--cpu-shares 400 \
|
|
--memory="1G" \
|
|
allinurl/goaccess:latest \
|
|
-a -o $3 \
|
|
--no-progress \
|
|
--log-format=COMBINED \
|
|
- > $4
|