File: main.go

package info (click to toggle)
golang-github-dtylman-scp 0.0~git20181017.f3000a3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: makefile: 3
file content (65 lines) | stat: -rw-r--r-- 1,404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package main

import (
	"bufio"
	"fmt"
	"net"
	"os"
	"path/filepath"
	"strings"
	"time"

	"github.com/dtylman/scp"
	"golang.org/x/crypto/ssh"
)

func connect(host, user, password string) (*ssh.Client, error) {

	fmt.Printf("Opening tcp to %v\n", host)
	conn, err := net.DialTimeout("tcp", host, time.Second*30)
	if err != nil {
		return nil, err
	}
	config := &ssh.ClientConfig{
		User: user,
		Auth: []ssh.AuthMethod{ssh.Password(password)},
	}
	fmt.Printf("Establishing ssh session %v...\n", host)
	sshconn, chans, reqs, err := ssh.NewClientConn(conn, host, config)
	if err != nil {
		return nil, err
	}
	return ssh.NewClient(sshconn, chans, reqs), nil
}

func doScp(host, user, remotepath string) error {
	reader := bufio.NewReader(os.Stdin)
	fmt.Print("Password: ")
	password, err := reader.ReadString('\n')
	if err != nil {
		return err
	}
	sc, err := connect(host, user, strings.TrimSpace(password))
	if err != nil {
		return err
	}
	start := time.Now()
	n, err := scp.CopyFrom(sc, remotepath, filepath.Base(remotepath))
	if err != nil {
		return err
	}
	fmt.Printf("Copied %v bytes in %v\n", n, time.Now().Sub(start))
	return nil
}

func main() {
	if len(os.Args) < 4 {
		fmt.Println(os.Args[0] + " will scp a remote file here.")
		fmt.Println("Usage [host:port] [user] [remote_path]")
		return
	}
	err := doScp(os.Args[1], os.Args[2], os.Args[3])
	if err != nil {
		fmt.Println(err.Error())
	}
}