summaryrefslogtreecommitdiff
path: root/src/user/app/shell
diff options
context:
space:
mode:
authordzwdz2022-08-03 13:20:50 +0200
committerdzwdz2022-08-03 13:20:50 +0200
commit4c8caaec8e856686581feb0a84089cdad07a0018 (patch)
tree6ad2ddca823d8eb069c63c653875919223faeafe /src/user/app/shell
parentbdae1cb0bbd3dd7589a458d54cb85b4bc6d7556c (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.c2
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");