diff --git a/ETSUI/EtsProcess/README.md b/ETSUI/EtsProcess/README.md new file mode 100644 index 0000000000000000000000000000000000000000..24c753d70a8fbeaa6b9006978691bb460ed7f271 --- /dev/null +++ b/ETSUI/EtsProcess/README.md @@ -0,0 +1,17 @@ +# eTS Process Information + + + +### Introduction + +This sample shows how to obtain process information and start a child process to run a shell script in Extended TypeScript (eTS). With this sample, you can obtain the running time, obtain and change the working directory of a process, send a signal to a specific process, start or close a child process, and exit the current process. + +### Usage + +Touch buttons on the home page of the sample app to try the corresponding functions. + + + +### Constraints + +This sample can only be run on standard-system devices. diff --git a/ETSUI/EtsProcess/entry/src/main/resources/en/element/string.json b/ETSUI/EtsProcess/entry/src/main/resources/en/element/string.json index a4832f8c13f09a3f59992f0a94fd083e064560fc..2b44a129fd07f580702061623e1fb4f1659996b1 100644 --- a/ETSUI/EtsProcess/entry/src/main/resources/en/element/string.json +++ b/ETSUI/EtsProcess/entry/src/main/resources/en/element/string.json @@ -10,31 +10,31 @@ }, { "name": "uptime", - "value": "Get current process rum time" + "value": "Get running time" }, { "name": "runCmd", - "value": "Start a child process" + "value": "Start child process" }, { "name": "close_child", - "value": "Close the child process" + "value": "Close child process" }, { "name": "cwd", - "value": "Get process work directory" + "value": "Get process working directory" }, { "name": "change_work_directory", - "value": "Change work directory" + "value": "Change process working directory" }, { "name": "exit", - "value": "Exit the process" + "value": "Exit process" }, { "name": "kill", - "value": "send signal to process" + "value": "Send signal to process" } ] } \ No newline at end of file