mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
9fb7a4f7f7
R=rsc CC=codebot http://codereview.appspot.com/953047
10 lines
154 B
Bash
Executable file
10 lines
154 B
Bash
Executable file
#!/usr/local/plan9/bin/rc
|
|
|
|
cmd = `{" $* | tail -1}
|
|
if (~ $#cmd 0) {
|
|
echo no such command found >[1=2]
|
|
exit notfound
|
|
}
|
|
|
|
echo ' ' $cmd >[1=2]
|
|
rc -c $"cmd
|