CLEAN: rename files

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2021-09-01 14:34:07 -05:00
parent d0990d55f1
commit 1faadf4845
15 changed files with 23 additions and 1 deletions

1
.gitignore vendored
View File

@ -18,6 +18,7 @@ example-lookupAAAA/example-lookupAAAA
example-nohup/example-nohup example-nohup/example-nohup
example-pprof/example-pprof example-pprof/example-pprof
example-shell/example-shell example-shell/example-shell
example-ssh/example-ssh
example-systray/example-systray example-systray/example-systray
example-ui-controlgallery/example-ui-controlgallery example-ui-controlgallery/example-ui-controlgallery
example-ui-radiobutton/example-ui-radiobutton example-ui-radiobutton/example-ui-radiobutton

View File

@ -29,12 +29,14 @@ build:
# misc # misc
cd example-lookupAAAA; go install # nslookup cd example-lookupAAAA; go install # nslookup
cd example-json-decode; go install # raw golang byte handling cd example-json-decode; go install # raw golang byte handling
cd example-ssh; go install # scp example
# golang things # golang things
cd example-pprof; go install # dump out go process internals cd example-pprof; go install # dump out go process internals
prep: prep:
make -C example-nohup prep make -C example-nohup prep
make -C example-sshd prep
sub-make: sub-make:
# shell things # shell things

View File

@ -5,3 +5,6 @@ build:
build-windows: build-windows:
env GOOS=windows GOARCH=amd64 go build env GOOS=windows GOARCH=amd64 go build
prep:
go get -v -t -u .

View File

@ -0,0 +1,5 @@
all:
go install
prep:
go get -v -t -u .

View File

@ -1,3 +1,6 @@
all:
go build
scp: scp:
go run scp.go go run scp.go

View File

@ -1,3 +1,5 @@
// +build ignore
package main package main
import ( import (

View File

@ -1,3 +1,5 @@
// +build ignore
package main package main
import "bufio" import "bufio"

View File

@ -1,3 +1,5 @@
// +build ignore
package main package main
import ( import (

View File

@ -13,7 +13,7 @@ import "golang.org/x/crypto/ssh"
func main() { func main() {
host := "mirrors.wit.com" host := "mirrors.wit.org"
port := "22" port := "22"
username := "jcarr" username := "jcarr"
pass := "tryme" pass := "tryme"

View File

@ -1,3 +1,5 @@
// +build ignore
package main package main
import ( import (