aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/exec.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-19 14:16:54 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-19 14:16:54 -0700
commit6d50d5b97d49a74a8faf587ec2bbf234626adf0c (patch)
treeff09e03ad96fc873b10027120f38a2ae382ae916 /sys/cmd/rc/exec.h
parent2b53bca326decd50012883f0cff3b5316a3e100d (diff)
Feat(rc): added subshell commands and cd builtin
Slowly chipping away at a decent feature list. Subshell commands are executed by @{ ... }.
Diffstat (limited to 'sys/cmd/rc/exec.h')
-rw-r--r--sys/cmd/rc/exec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/cmd/rc/exec.h b/sys/cmd/rc/exec.h
index 0df01d0..9ad0f3d 100644
--- a/sys/cmd/rc/exec.h
+++ b/sys/cmd/rc/exec.h
@@ -15,8 +15,10 @@ void Xlocal(void);
void Xreadcmd(void);
void Xunlocal(void);
void Xassign(void);
+void Xbang(void);
void Xasync(void);
-void Xbasic(void); // Xbasic(args) run command and wait for result
+void Xbasic(void); // Xbasic(args) run command and wait for result
+void Xsubshell(void);
void Xword(void);
void Xcount(void);
void Xflat(void);
@@ -24,6 +26,7 @@ void Xflat(void);
void Xerror(char*);
/* builtin commands */
+void xcd(void);
void xfg(void);
void xdot(void);
void xjob(void);