diff --git a/tldr/linux/links b/tldr/linux/links index f6bb6d57..4cb612e0 100644 --- a/tldr/linux/links +++ b/tldr/linux/links @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # links > Command-line text-only web browser. -> See also: `links2'. +> See also: `links2`. > More information: . - Visit a website: diff --git a/tldr/linux/su b/tldr/linux/su index b9f07ee3..275d653b 100644 --- a/tldr/linux/su +++ b/tldr/linux/su @@ -24,7 +24,7 @@ source: https://github.com/tldr-pages/tldr.git `su - {{username}} {{[-c|--command]}} "{{command}}"` -- Switch to a given user and use a specific shell (e.g., zsh, fish, bash): +- Switch to a given user and use a specific shell (e.g., Zsh, fish, Bash): `su {{[-s|--shell]}} /{{path/to/shell}} {{username}}` diff --git a/tldr/npm-stars b/tldr/npm-stars new file mode 100644 index 00000000..47315acb --- /dev/null +++ b/tldr/npm-stars @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# npm stars + +> View packages marked as favorites. +> More information: . + +- Show all starred packages by the currently logged-in user: + +`npm stars` + +- Show your starred packages from a specific registry: + +`npm stars --registry {{registry_url}}` + +- Show packages starred by a specific user: + +`npm stars {{username}}` + +- Show packages starred by a specific user from a specific registry: + +`npm stars {{username}} --registry {{registry_url}}` + +- Display help: + +`npm stars {{[-h|--help]}}` diff --git a/tldr/osx/locate b/tldr/osx/locate index 19e78b4e..470fa43a 100644 --- a/tldr/osx/locate +++ b/tldr/osx/locate @@ -12,7 +12,7 @@ source: https://github.com/tldr-pages/tldr.git `locate "{{pattern}}"` -- Look for a pattern case-insensitively: +- Look for a pattern while [i]gnoring cases: `locate -i "{{pattern}}"`