package bash import ( "strings" ice "shylinux.com/x/icebergs" "shylinux.com/x/icebergs/base/mdb" ) func init() { Index.MergeCommands(ice.Commands{ "/configs": {Name: "/configs", Help: "配置", Hand: func(m *ice.Message, arg ...string) { m.Cmd("web.code.git.configs", func(value ice.Maps) { if strings.HasPrefix(value[mdb.NAME], "url") { m.Echo(`git config --global "%s" "%s"`, value[mdb.NAME], value[mdb.VALUE]) m.Echo(ice.NL) } }) }}, }) }