GoLSh/cmd/pwd.go
2025-06-24 16:02:09 -05:00

10 lines
135 B
Go

package cmd
import (
"gosh/types"
)
func GoshPwd(sh *types.Shell) types.CmdOutput {
return types.CmdOutput{Id: 0, Output: sh.Cd}
}