Commit dde8e12

Anton Medvedev <anton@medv.io>
2021-08-19 23:42:04
Update README.md
1 parent 98e7de7
Changed files (1)
README.md
@@ -87,15 +87,6 @@ let flags = [
 await $`git log ${flags}`
 ```
 
-For example, to upload files in parallel:
-
-```js
-let hosts = [...]
-await Promise.all(hosts.map(host =>
-  $`rsync -azP ./src ${host}:/var/www`  
-))
-```
-
 If the executed program returns a non-zero exit code,
 `ProcessOutput` will be thrown.