This file contains 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 | |
_testit() { | |
printf "running " | |
touch .lock | |
ant debug install 1> /dev/null | |
adb shell 'am start -n com.example.thumbs/.ThumbsActivity' 1> /dev/null | |
rm .lock | |
echo "Done." | |
} |
This file contains 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
include $(GOROOT)/src/Make.inc | |
CMDS=\ | |
command-1\ | |
command-2\ | |
command-3 | |
PKGS=\ | |
package-1\ | |
package-2\ |
This file contains 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
# A sample top level Makefile for multi package Go projects. | |
include $(GOROOT)/src/Make.inc | |
CMDS=\ | |
command-1\ | |
command-2\ | |
command-3 | |
PKGS=\ |
This file contains 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 ( | |
"container/vector" | |
"os" | |
"path" | |
"io/ioutil" | |
) | |
type V struct { |