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

17 lines
234 B

package main
import (
"os"
"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() {
os.Exit(int(cmd.Execute()))
}