diff options
| author | jet2tlf <jet2tlf@gmail.com> | 2024-05-31 04:50:45 +0000 |
|---|---|---|
| committer | jet2tlf <jet2tlf@gmail.com> | 2024-05-31 04:50:45 +0000 |
| commit | 6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f (patch) | |
| tree | bfafed21659b288d53714b96febb55b4339b8448 /cmd/myshell | |
| parent | 9f711b3839d5e7cf769c39b573bbe27be3b9e345 (diff) | |
| download | shell-go-6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f.tar.gz shell-go-6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f.zip | |
pass 11st stage
Diffstat (limited to 'cmd/myshell')
| -rw-r--r-- | cmd/myshell/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/myshell/main.go b/cmd/myshell/main.go index 65d2eb4..4609ce7 100644 --- a/cmd/myshell/main.go +++ b/cmd/myshell/main.go @@ -60,7 +60,7 @@ func Cd(dir string) { err := os.Chdir(p) if err != nil { - fmt.Printf("cd: %s: No such file or directory\n", p) + fmt.Printf("%s: No such file or directory\n", p) } } |