-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from blacknon/develop
Version 0.6.9
- Loading branch information
Showing
59 changed files
with
238 additions
and
11,189 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ env: | |
# - docker | ||
|
||
go: | ||
- 1.12.x | ||
- 1.22.x | ||
|
||
git: | ||
depth: 1 | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ USAGE: | |
app.Name = "lscp" | ||
app.Usage = "TUI list select and parallel scp client command." | ||
app.Copyright = "blacknon([email protected])" | ||
app.Version = "0.6.8" | ||
app.Version = "0.6.9" | ||
|
||
// options | ||
// TODO(blacknon): オプションの追加(0.7.0) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ USAGE: | |
app.Name = "lsftp" | ||
app.Usage = "TUI list select and parallel sftp client command." | ||
app.Copyright = "blacknon([email protected])" | ||
app.Version = "0.6.8" | ||
app.Version = "0.6.9" | ||
|
||
app.Flags = []cli.Flag{ | ||
cli.StringFlag{Name: "file,F", Value: defConf, Usage: "config file path"}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,9 +51,6 @@ USAGE: | |
# run command parallel in selected server over ssh. | ||
{{.Name}} -p command... | ||
# run command parallel in selected server over ssh, do it in interactively shell. | ||
{{.Name}} -s | ||
` | ||
|
||
// Create app | ||
|
@@ -62,7 +59,7 @@ USAGE: | |
app.Name = "lssh" | ||
app.Usage = "TUI list select and parallel ssh client command." | ||
app.Copyright = "blacknon([email protected])" | ||
app.Version = "0.6.8" | ||
app.Version = "0.6.9" | ||
|
||
// TODO(blacknon): オプションの追加 | ||
// -f ... バックグラウンドでの接続(X11接続やport forwardingをバックグラウンドで実行する場合など)。 | ||
|
@@ -85,7 +82,7 @@ USAGE: | |
cli.StringSliceFlag{Name: "R", Usage: "Remote port forward mode.Specify a `[bind_address:]port:remote_address:port`. If only one port is specified, it will operate as Reverse Dynamic Forward. Only single connection works."}, | ||
cli.StringFlag{Name: "D", Usage: "Dynamic port forward mode(Socks5). Specify a `port`. Only single connection works."}, | ||
cli.StringFlag{Name: "d", Usage: "HTTP Dynamic port forward mode. Specify a `port`. Only single connection works."}, | ||
// cli.StringFlag{Name: "r", Usage: "HTTP Reverse Dynamic port forward mode. Specify a `port`. Only single connection works."}, | ||
cli.StringFlag{Name: "r", Usage: "HTTP Reverse Dynamic port forward mode. Specify a `port`. Only single connection works."}, | ||
|
||
// Other bool | ||
cli.BoolFlag{Name: "w", Usage: "Displays the server header when in command execution mode."}, | ||
|
@@ -97,7 +94,6 @@ USAGE: | |
cli.BoolFlag{Name: "parallel,p", Usage: "run command parallel node(tail -F etc...)."}, | ||
cli.BoolFlag{Name: "localrc", Usage: "use local bashrc shell."}, | ||
cli.BoolFlag{Name: "not-localrc", Usage: "not use local bashrc shell."}, | ||
cli.BoolFlag{Name: "pshell,s", Usage: "use parallel-shell(pshell) (alpha)."}, | ||
cli.BoolFlag{Name: "list,l", Usage: "print server list from config."}, | ||
cli.BoolFlag{Name: "help,h", Usage: "print this help"}, | ||
} | ||
|
@@ -249,6 +245,9 @@ USAGE: | |
// HTTP Dynamic port forwarding port | ||
r.HTTPDynamicPortForward = c.String("d") | ||
|
||
// HTTP Reverse Dynamic port forwarding port | ||
r.HTTPReverseDynamicPortForward = c.String("r") | ||
|
||
r.Start() | ||
return nil | ||
} | ||
|
Empty file.
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
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
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
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
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
Oops, something went wrong.