This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"fmt" | |
"reflect" | |
) | |
type TestStruct struct { | |
E error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run graphite | |
docker run \ | |
--name graphite \ | |
--restart=always \ | |
-p 81:80 \ | |
-p 2003-2004:2003-2004 \ | |
-p 2023-2024:2023-2024 \ | |
-p 8125:8125/udp \ | |
-p 8126:8126 \ | |
graphiteapp/graphite-statsd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh | |
# read check.txt with strings to find in files in directory 'data' | |
while read -r line; do | |
if grep -q -wi "$line" data/* ; then ; else echo "$line - no"; fi; | |
done <"check.txt" |
OlderNewer