mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-24 06:10:11 +00:00
16 lines
417 B
C
16 lines
417 B
C
/*************************************************************************
|
|
> File Name: testCallSh.c
|
|
> Description:
|
|
> Conclusion:
|
|
> Author: rh_Jameson
|
|
> Created Time: 2015年06月12日 星期五 16时21分10秒
|
|
************************************************************************/
|
|
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
int main(){
|
|
system("ls -al");
|
|
return 0;
|
|
}
|