diff options
author | Robert Morris <[email protected]> | 2022-08-10 07:06:49 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2022-08-10 07:21:50 -0400 |
commit | e67cb408d4f66653690fc10b49410273302472e0 (patch) | |
tree | 27092965dbdfb219408bf38f3bb4364fc1178559 /user | |
parent | 07cf0eb25518089a96e8778e6809fc88d292ea5b (diff) | |
download | xv6-labs-e67cb408d4f66653690fc10b49410273302472e0.tar.gz xv6-labs-e67cb408d4f66653690fc10b49410273302472e0.tar.bz2 xv6-labs-e67cb408d4f66653690fc10b49410273302472e0.zip |
x
Diffstat (limited to 'user')
-rw-r--r-- | user/sh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ runcmd(struct cmd *cmd) int getcmd(char *buf, int nbuf) { - write(1, "$ ", 2); + write(2, "$ ", 2); memset(buf, 0, nbuf); gets(buf, nbuf); if(buf[0] == 0) // EOF |