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 ( | |
"bytes" | |
"encoding/base64" | |
"encoding/binary" | |
"fmt" | |
"os" | |
) |
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
#!/usr/bin/perl | |
# See http://debedb.blogspot.com/2007/02/poor-mans-tracepoints-and-call-sequence.html | |
use FileHandle; | |
use IPC::Open2; | |
if (! (-e "tags")) { | |
print "Cannot find tags, will run\n"; | |
$tagCmd = "ctags *.h *.c"; |
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/bash | |
bindir=/home/grisha/git/rtbkit/build/x86_64/bin | |
export bindir | |
router="router_runner" | |
monitor="monitor_service_runner" | |
logger="data_logger_ex" | |
config="agent_configuration_service_runner" | |
banker="banker_service_runner" | |
augmentor="augmentor_ex_runner" |
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
#!/usr/bin/perl | |
use FileHandle; | |
use IPC::Open2; | |
if (! (-e "tags")) { | |
print "Cannot find tags, will run\n"; | |
$tagCmd = "ctags *.h *.c"; | |
print "\t$tagCmd\n"; | |
system($tagCmd) && die ("Make sure ctags is installed\n"); |
NewerOlder