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
238 B

package main
import (
"os"
"github.com/curusarn/resh/cmd/control/cmd"
)
// Version from git set during build
var Version string
// Revision from git set during build
var Revision string
func main() {
os.Exit(int(cmd.Execute()))
}