1 #ifndef MKSH_TAB_CMD_H 2 #define MKSH_TAB_CMD_H 3 4 #define TAB_CMD_LIST \ 5 "awk=awk",\ 6 "base64=base64",\ 7 "basename=basename",\ 8 "cat=cat",\ 9 "chgrp=chgrp",\ 10 "chmod=chmod",\ 11 "chown=chown",\ 12 "cksum=cksum",\ 13 "cmp=cmp",\ 14 "comm=comm",\ 15 "count=count",\ 16 "cp=cp",\ 17 "cpio=cpio",\ 18 "crc32=crc32",\ 19 "cut=cut",\ 20 "dd=dd",\ 21 "diff=diff",\ 22 "dirname=dirname",\ 23 "dos2unix=dos2unix",\ 24 "echo=echo",\ 25 "egrep=egrep",\ 26 "expand=expand",\ 27 "fgrep=fgrep",\ 28 "file=file",\ 29 "find=find",\ 30 "fmt=fmt",\ 31 "grep=grep",\ 32 "gunzip=gunzip",\ 33 "gzip=gzip",\ 34 "head=head",\ 35 "hexedit=hexedit",\ 36 "iconv=iconv",\ 37 "ls=ls",\ 38 "lsattr=lsattr",\ 39 "lsof=lsof",\ 40 "md5sum=md5sum",\ 41 "mkdir=mkdir",\ 42 "mktemp=mktemp",\ 43 "mv=mv",\ 44 "nl=nl",\ 45 "od=od",\ 46 "paste=paste",\ 47 "patch=patch",\ 48 "pgrep=pgrep",\ 49 "printf=printf",\ 50 "pwd=pwd",\ 51 "readahead=readahead",\ 52 "readlink=readlink",\ 53 "realpath=realpath",\ 54 "rev=rev",\ 55 "rm=rm",\ 56 "rmdir=rmdir",\ 57 "sed=sed",\ 58 "seq=seq",\ 59 "sha1sum=sha1sum",\ 60 "sort=sort",\ 61 "split=split",\ 62 "stat=stat",\ 63 "strings=strings",\ 64 "tac=tac",\ 65 "tail=tail",\ 66 "tar=tar",\ 67 "tee=tee",\ 68 "touch=touch",\ 69 "truncate=truncate",\ 70 "uniq=uniq",\ 71 "unix2dos=unix2dos",\ 72 "unlink=unlink",\ 73 "uudecode=uudecode",\ 74 "uuencode=uuencode",\ 75 "wc=wc",\ 76 "which=which",\ 77 "xxd=xxd",\ 78 "zcat=zcat",\ 79 "df=df",\ 80 "du=du",\ 81 "free=free",\ 82 "mount=mount",\ 83 "sync=sync",\ 84 "cal=cal",\ 85 "date=date",\ 86 "hwclock=hwclock",\ 87 "sleep=sleep",\ 88 "time=time",\ 89 "uptime=uptime",\ 90 "usleep=usleep",\ 91 "hostname=hostname",\ 92 "nproc=nproc",\ 93 "printenv=printenv",\ 94 "uname=uname",\ 95 "env=env",\ 96 "false=false",\ 97 "sh=sh",\ 98 "test=test",\ 99 "true=true",\ 100 "yes=yes",\ 101 "help=help",\ 102 "toybox=toybox",\ 103 "reset=reset",\ 104 "tty=tty",\ 105 "clear=clear",\ 106 "mcookie=mcookie",\ 107 "mkpasswd=mkpasswd",\ 108 "uuidgen=uuidgen",\ 109 "factor=factor",\ 110 "nohup=nohup",\ 111 "iotop=iotop",\ 112 "hwclock=hwclock",\ 113 "ifconfig=ifconfig",\ 114 "netstat=netstat",\ 115 "ping=ping",\ 116 "ping6=ping6",\ 117 "pidof=pidof",\ 118 "pmap=pmap",\ 119 "prlimit=prlimit",\ 120 "ps=ps",\ 121 "pwdx=pwdx",\ 122 "timeout=timeout",\ 123 "top=top",\ 124 "ulimit=ulimit",\ 125 "watch=watch",\ 126 "xargs=xargs",\ 127 "diff=diff",\ 128 "mkfifo=mkfifo",\ 129 "ftpget=ftpget",\ 130 "ftpput=ftpput",\ 131 "telnet=telnet",\ 132 "wget=wget",\ 133 "kill=kill",\ 134 "pkill=pkill",\ 135 "killall=killall", 136 137 #endif