diff options
author | jacob gw <jacoblevgw@gmail.com> | 2021-04-10 23:25:49 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-13 00:02:46 +0200 |
commit | cb22a6642d2c1e351221ae9282ece9d5b6814b2b (patch) | |
tree | fb7ef566f9a45dcdacfddee877c273cc4056b1d1 /Userland/Shell/Shell.h | |
parent | 1d7a0ab5ea2e2ad335f872f3db65fc15fad54cfd (diff) | |
download | serenity-cb22a6642d2c1e351221ae9282ece9d5b6814b2b.zip |
Shell: add `type` builtin
Diffstat (limited to 'Userland/Shell/Shell.h')
-rw-r--r-- | Userland/Shell/Shell.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Shell/Shell.h b/Userland/Shell/Shell.h index 832bc8d723..194538f0ae 100644 --- a/Userland/Shell/Shell.h +++ b/Userland/Shell/Shell.h @@ -45,6 +45,7 @@ __ENUMERATE_SHELL_BUILTIN(cd) \ __ENUMERATE_SHELL_BUILTIN(cdh) \ __ENUMERATE_SHELL_BUILTIN(pwd) \ + __ENUMERATE_SHELL_BUILTIN(type) \ __ENUMERATE_SHELL_BUILTIN(exec) \ __ENUMERATE_SHELL_BUILTIN(exit) \ __ENUMERATE_SHELL_BUILTIN(export) \ |