Rich Enhanced Shell History - Contextual shell history for zsh and bash
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
resh/cmd/control/main.go

15 lines
228 B

package main
import (
"github.com/curusarn/resh/cmd/control/cmd"
)
// version from git set during build
var version string
// commit from git set during build
var commit string
func main() {
cmd.Execute(version, commit)
}