diff options
author | dzwdz | 2022-08-03 13:20:50 +0200 |
---|---|---|
committer | dzwdz | 2022-08-03 13:20:50 +0200 |
commit | 4c8caaec8e856686581feb0a84089cdad07a0018 (patch) | |
tree | 6ad2ddca823d8eb069c63c653875919223faeafe /src/user/app/shell | |
parent | bdae1cb0bbd3dd7589a458d54cb85b4bc6d7556c (diff) |
user/libc: "!files"
similar to /dev/{stdin,stdout,stderr} on Linux, except handled by the
libc instead of the kernel
because that's the simplest way
Diffstat (limited to 'src/user/app/shell')
-rw-r--r-- | src/user/app/shell/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/shell/builtins.c b/src/user/app/shell/builtins.c index e272cf3..d0a2e3a 100644 --- a/src/user/app/shell/builtins.c +++ b/src/user/app/shell/builtins.c @@ -13,7 +13,7 @@ static void cmd_cat(int argc, const char **argv) { if (argv[1]) file = fopen(argv[1], "r"); else - file = file_clone(stdin); + file = file_clone(stdin, "r"); if (!file) { eprintf("couldn't open"); |