diff options
Diffstat (limited to 'node_modules/shelljs/README.md')
-rw-r--r-- | node_modules/shelljs/README.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/node_modules/shelljs/README.md b/node_modules/shelljs/README.md index 91f110ff4..1f3e6ec0f 100644 --- a/node_modules/shelljs/README.md +++ b/node_modules/shelljs/README.md @@ -732,14 +732,16 @@ Example: ```javascript config.verbose = true; // or set('-v'); cd('dir/'); -ls('subdir/'); +rm('-rf', 'foo.txt', 'bar.txt'); +exec('echo hello'); ``` Will print each command as follows: ``` cd dir/ -ls subdir/ +rm -rf foo.txt bar.txt +exec echo hello ``` ### config.globOptions |