diff --git a/tldr/lzdiff b/tldr/lzdiff new file mode 100644 index 00000000..808f5ea5 --- /dev/null +++ b/tldr/lzdiff @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# lzdiff + +> This command is an alias of `xzdiff`. + +- View documentation for the original command: + +`tldr xzdiff` diff --git a/tldr/ng-update b/tldr/ng-update new file mode 100644 index 00000000..5147c471 --- /dev/null +++ b/tldr/ng-update @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ng update + +> Update an Angular workspace and its dependencies. +> More information: . + +- Update all dependencies in the workspace: + +`ng update` + +- Update a specific package: + +`ng update {{package}}` + +- Update multiple packages: + +`ng update {{package1 package2 ...}}` + +- Ignore peer dependency version mismatches: + +`ng update {{package}} --force` + +- Allow updating when the repository contains modified or untracked files: + +`ng update {{package}} --allow-dirty` + +- Update to prerelease versions, including beta and release candidates: + +`ng update {{package}} --next` + +- Display additional details about internal operations: + +`ng update {{package}} --verbose` diff --git a/tldr/parallel b/tldr/parallel index 6ae4816f..dd9268f4 100644 --- a/tldr/parallel +++ b/tldr/parallel @@ -34,7 +34,7 @@ source: https://github.com/tldr-pages/tldr.git - Download 4 files simultaneously from a text file containing links showing progress: -`parallel {{[-j|--jobs]}} 4 --bar --eta wget {{[-q|--quote]}} {} :::: {{path/to/links.txt}}` +`parallel {{[-j|--jobs]}} 4 --bar --eta curl {{[-sO|--silent --remote-name]}} {} :::: {{path/to/links.txt}}` - Print the jobs which `parallel` is running in `stderr`: