harmony 鸿蒙Shell Command Programming Example
Shell Command Programming Example
Example Description
This section describes how to add a shell command test using static registration and dynamic registration.
Static Registration
Development process:
Define the cmd_test function to be called to add a command.
Use the SHELLCMD_ENTRY function to add the new command.
Add a parameter to the liteos_tables_ldflags.mk link options for linking to the new command.
Recompile the code and run it.
Static Registration Programming Example
Define the cmd_test function to be called to add a command.
#include "shell.h" #include "shcmd.h" int cmd_test(void) { printf("hello everybody!\n"); return 0; }
Add the new command.
SHELLCMD_ENTRY(test_shellcmd, CMD_TYPE_EX, "test", 0, (CMD_CBK_FUNC)cmd_test);
Add a parameter to the link options for linking to the new command.
Add -utest_shellcmd to the LITEOS_TABLES_LDFLAGS option in the liteos_tables_ldflags.mk file.
Recompile the code.
make clean;make
Run the help command to view all the commands registered in the system.
The command output contains the test command (the following command output is for reference only.)
OHOS # help *******************shell commands:************************* arp cat cd chgrp chmod chown cp cpup date dhclient dmesg dns format free help hwi ifconfig ipdebug kill log ls lsfd memcheck mkdir mount netstat oom partinfo partition ping ping6 pwd reset rm rmdir sem statfs su swtmr sync tftp touch umount uname test systeminfo task telnet watch writeproc
Dynamic Registration
Development process:
Use the osCmdReg function to add a new command.
Recompile the code and run it.
Dynamic Registration Programming Example
Call the osCmdReg function from the app_init function to dynamically register the command.
#include "shell.h" #include "shcmd.h" int cmd_test(void) { printf("hello everybody!\n"); return 0; } void app_init(void) { .... .... osCmdReg(CMD_TYPE_EX, "test", 0,(CMD_CBK_FUNC)cmd_test); .... }
Recompile the code.
make clean;make
Run the help command to view all the commands registered in the system.
The command output contains the test command.
OHOS # help *******************shell commands:************************* arp cat cd chgrp chmod chown cp cpup date dhclient dmesg dns format free help hwi ifconfig ipdebug kill log ls lsfd memcheck mkdir mount netstat oom partinfo partition ping ping6 pwd reset rm rmdir sem statfs su swtmr sync tftp touch umount uname test systeminfo task telnet watch writeproc
你可能感兴趣的鸿蒙文章
harmony 鸿蒙Kernel Coding Specification
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦