From 9304a1c1bb2d75dfc6b72a3ae59278dbc1789678 Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Mon, 14 Oct 2024 00:18:04 +0000 Subject: [PATCH] Update cheatsheets --- tldr/blackfire | 2 +- tldr/bmptoppm | 2 +- tldr/docker-ps | 2 +- tldr/dust | 4 ++-- tldr/gemtopbm | 2 +- tldr/git-bugreport | 4 ++-- tldr/git-bundle | 4 ++-- tldr/git-log | 4 ++-- tldr/git-shortlog | 2 +- tldr/icontopbm | 2 +- tldr/id3tag | 2 +- tldr/lckdo | 2 +- tldr/linux/gedit | 2 +- tldr/linux/journalctl | 4 ++-- tldr/linux/tailf | 2 +- tldr/mpv | 2 +- tldr/npm-unpublish | 29 +++++++++++++++++++++++++++++ tldr/nvim | 2 +- tldr/pamfixtrunc | 2 +- tldr/pamrgbatopng | 2 +- tldr/pbmtoicon | 2 +- tldr/pbmtox10bm | 2 +- tldr/pgmcrater | 2 +- tldr/pgmedge | 2 +- tldr/pgmnorm | 2 +- tldr/pgmoil | 2 +- tldr/pgmslice | 2 +- tldr/pgmtopbm | 2 +- tldr/pngtopnm | 2 +- tldr/pnmarith | 2 +- tldr/pnmcomp | 2 +- tldr/pnmcut | 2 +- tldr/pnmenlarge | 2 +- tldr/pnmfile | 2 +- tldr/pnmflip | 2 +- tldr/pnminterp | 2 +- tldr/pnmsplit | 2 +- tldr/pnmtofits | 2 +- tldr/pnmtotiff | 2 +- tldr/ppmbrighten | 2 +- tldr/ppmnorm | 2 +- tldr/ppmquantall | 2 +- tldr/ppmtogif | 2 +- tldr/ppmtojpeg | 2 +- tldr/ppmtomap | 2 +- tldr/ppmtotga | 2 +- tldr/ppmtouil | 2 +- tldr/ppmtowinicon | 2 +- tldr/vim | 2 +- tldr/winicontoppm | 2 +- tldr/zapier | 38 ++++++++++++++++++++++++++++++++++++++ 51 files changed, 121 insertions(+), 54 deletions(-) create mode 100644 tldr/npm-unpublish create mode 100644 tldr/zapier diff --git a/tldr/blackfire b/tldr/blackfire index 4a03b36c..8bb662c1 100644 --- a/tldr/blackfire +++ b/tldr/blackfire @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Run the profiler and collect 10 samples: -`blackfire --samples {{10}} run {{php path/to/file.php}}` +`blackfire --samples 10 run {{php path/to/file.php}}` - Run the profiler and output results as JSON: diff --git a/tldr/bmptoppm b/tldr/bmptoppm index 99b85976..f5ece492 100644 --- a/tldr/bmptoppm +++ b/tldr/bmptoppm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # bmptoppm -> This command is superseded by `bmptopnm`. +> This command has been superseded by `bmptopnm`. > More information: . - View documentation for the current command: diff --git a/tldr/docker-ps b/tldr/docker-ps index e58bd4cd..26478aec 100644 --- a/tldr/docker-ps +++ b/tldr/docker-ps @@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git - Filter containers by exit status code: -`docker ps --all --filter="exited={{code}}"` +`docker ps --all --filter "exited={{code}}"` - Filter containers by status (created, running, removing, paused, exited and dead): diff --git a/tldr/dust b/tldr/dust index 7bab1886..f387fb9e 100644 --- a/tldr/dust +++ b/tldr/dust @@ -18,11 +18,11 @@ source: https://github.com/tldr-pages/tldr.git - Display 30 directories (defaults to 21): -`dust --number-of-lines {{30}}` +`dust --number-of-lines 30` - Display information for the current directory, up to 3 levels deep: -`dust --depth {{3}}` +`dust --depth 3` - Display the biggest directories at the top in descending order: diff --git a/tldr/gemtopbm b/tldr/gemtopbm index 11e70c14..fa86bab1 100644 --- a/tldr/gemtopbm +++ b/tldr/gemtopbm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # gemtopbm -> This command is superseded by `gemtopnm`. +> This command has been superseded by `gemtopnm`. > More information: . - View documentation for the current command: diff --git a/tldr/git-bugreport b/tldr/git-bugreport index 0b20cbf0..3283c62f 100644 --- a/tldr/git-bugreport +++ b/tldr/git-bugreport @@ -14,8 +14,8 @@ source: https://github.com/tldr-pages/tldr.git - Create a new bug report file in the specified directory, creating it if it does not exist: -`git bugreport --output-directory {{path/to/directory}}` +`git bugreport {{-o|--output-directory}} {{path/to/directory}}` - Create a new bug report file with the specified filename suffix in `strftime` format: -`git bugreport --suffix {{%m%d%y}}` +`git bugreport {{-s|--suffix}} {{%m%d%y}}` diff --git a/tldr/git-bundle b/tldr/git-bundle index 8ae8e00b..d9116a69 100644 --- a/tldr/git-bundle +++ b/tldr/git-bundle @@ -18,11 +18,11 @@ source: https://github.com/tldr-pages/tldr.git - Create a bundle file of the last 5 commits of the current branch: -`git bundle create {{path/to/file.bundle}} -{{5}} {{HEAD}}` +`git bundle create {{path/to/file.bundle}} -5 {{HEAD}}` - Create a bundle file of the latest 7 days: -`git bundle create {{path/to/file.bundle}} --since {{7.days}} {{HEAD}}` +`git bundle create {{path/to/file.bundle}} --since 7.days {{HEAD}}` - Verify that a bundle file is valid and can be applied to the current repository: diff --git a/tldr/git-log b/tldr/git-log index 11e2e943..0292a9b4 100644 --- a/tldr/git-log +++ b/tldr/git-log @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Show the history of a particular file or directory, including differences: -`git log {{--patch|-p|-u}} {{path/to/file_or_directory}}` +`git log {{-p|-u|--patch}} {{path/to/file_or_directory}}` - Show an overview of which file(s) changed in each commit: @@ -34,7 +34,7 @@ source: https://github.com/tldr-pages/tldr.git - Show the last N number of commits from a certain author: -`git log {{--max-count|-n}} {{number}} --author "{{author}}"` +`git log {{-n|--max-count}} {{number}} --author "{{author}}"` - Show commits between two dates (yyyy-mm-dd): diff --git a/tldr/git-shortlog b/tldr/git-shortlog index a2f35a16..d1b9d3e4 100644 --- a/tldr/git-shortlog +++ b/tldr/git-shortlog @@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git - View a summary of the last 5 commits (i.e. specify a revision range): -`git shortlog HEAD~{{5}}..HEAD` +`git shortlog HEAD~5..HEAD` - View all users, emails and the number of commits in the current branch: diff --git a/tldr/icontopbm b/tldr/icontopbm index dbc01e5d..9ca13ab6 100644 --- a/tldr/icontopbm +++ b/tldr/icontopbm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # icontopbm -> This command is superseded by `sunicontopnm`. +> This command has been superseded by `sunicontopnm`. > More information: . - View documentation for the current command: diff --git a/tldr/id3tag b/tldr/id3tag index 76eec2e1..eb1af971 100644 --- a/tldr/id3tag +++ b/tldr/id3tag @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Set album title of all MP3 files in the current directory: -`id3tag --album={{album}} {{*.mp3}}` +`id3tag --album {{album}} {{*.mp3}}` - Display help: diff --git a/tldr/lckdo b/tldr/lckdo index 130b8aaf..cd539f5d 100644 --- a/tldr/lckdo +++ b/tldr/lckdo @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # lckdo -> This command is deprecated and superseded by `flock`. +> This command is deprecated and has been superseded by `flock`. > More information: . - View documentation for the recommended replacement: diff --git a/tldr/linux/gedit b/tldr/linux/gedit index cfea381d..0b9dca34 100644 --- a/tldr/linux/gedit +++ b/tldr/linux/gedit @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Open a text file with a specific encoding: -`gedit --encoding={{UTF-8}} {{path/to/file}}` +`gedit --encoding {{UTF-8}} {{path/to/file}}` - Display a list of supported encodings: diff --git a/tldr/linux/journalctl b/tldr/linux/journalctl index 7d967874..abca28a5 100644 --- a/tldr/linux/journalctl +++ b/tldr/linux/journalctl @@ -10,11 +10,11 @@ source: https://github.com/tldr-pages/tldr.git - Show all messages with priority level 3 (errors) from this [b]oot: -`journalctl -b --priority={{3}}` +`journalctl -b --priority=3` - Delete journal logs which are older than 2 days: -`journalctl --vacuum-time={{2d}}` +`journalctl --vacuum-time=2d` - Show only the last N li[n]es and [f]ollow new messages (like `tail -f` for traditional syslog): diff --git a/tldr/linux/tailf b/tldr/linux/tailf index d2c1fbfe..3d358d53 100644 --- a/tldr/linux/tailf +++ b/tldr/linux/tailf @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # tailf -> This command is superseded by `tail -f`. +> This command has been superseded by `tail -f`. > More information: . - View documentation for the recommended replacement: diff --git a/tldr/mpv b/tldr/mpv index beabff58..2c563d31 100644 --- a/tldr/mpv +++ b/tldr/mpv @@ -31,7 +31,7 @@ source: https://github.com/tldr-pages/tldr.git - Play a file at a specified speed (1 by default): -`mpv --speed={{0.01..100}} {{path/to/file}}` +`mpv --speed {{0.01..100}} {{path/to/file}}` - Play a file using a profile defined in the `mpv.conf` file: diff --git a/tldr/npm-unpublish b/tldr/npm-unpublish new file mode 100644 index 00000000..75903146 --- /dev/null +++ b/tldr/npm-unpublish @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# npm unpublish + +> Remove a package from the npm registry. +> More information: . + +- Unpublish a specific package version: + +`npm unpublish {{package_name}}@{{version}}` + +- Unpublish the entire package: + +`npm unpublish {{package_name}} --force` + +- Unpublish a package that is scoped: + +`npm unpublish @{{scope}}/{{package_name}}` + +- Specify a timeout period before unpublishing: + +`npm unpublish {{package_name}} --timeout {{time_in_milliseconds}}` + +- To prevent accidental unpublishing, use the `--dry-run` flag to see what would be unpublished: + +`npm unpublish {{package_name}} --dry-run` diff --git a/tldr/nvim b/tldr/nvim index 939ab625..8f786167 100644 --- a/tldr/nvim +++ b/tldr/nvim @@ -36,7 +36,7 @@ source: https://github.com/tldr-pages/tldr.git - Enter normal mode and save (write) the file, and quit: -`:wq` +`{{ZZ|:wq}}` - Quit without saving: diff --git a/tldr/pamfixtrunc b/tldr/pamfixtrunc index be773f6b..1b509424 100644 --- a/tldr/pamfixtrunc +++ b/tldr/pamfixtrunc @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pamfixtrunc -> This command is superseded by `pamfix -truncate`. +> This command has been superseded by `pamfix -truncate`. > More information: . - View documentation for the current command: diff --git a/tldr/pamrgbatopng b/tldr/pamrgbatopng index 9254c9d0..b1a66b12 100644 --- a/tldr/pamrgbatopng +++ b/tldr/pamrgbatopng @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pamrgbatopng -> This command is superseded by `pamtopng`. +> This command has been superseded by `pamtopng`. > More information: . - View documentation for the current command: diff --git a/tldr/pbmtoicon b/tldr/pbmtoicon index 8c262d0f..8ad87abc 100644 --- a/tldr/pbmtoicon +++ b/tldr/pbmtoicon @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pbmtoicon -> This command is superseded by `pbmtosunicon`. +> This command has been superseded by `pbmtosunicon`. > More information: . - View documentation for the current command: diff --git a/tldr/pbmtox10bm b/tldr/pbmtox10bm index 55a960a3..300905c4 100644 --- a/tldr/pbmtox10bm +++ b/tldr/pbmtox10bm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pbmtox10bm -> This command is superseded by `pbmtoxbm -x10`. +> This command has been superseded by `pbmtoxbm -x10`. > More information: . - View documentation for the current command: diff --git a/tldr/pgmcrater b/tldr/pgmcrater index c6cf8f14..45a55e5c 100644 --- a/tldr/pgmcrater +++ b/tldr/pgmcrater @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmcrater -> This command is superseded by `pamcrater`, `pamshadedrelief`, and `pamtopnm`. +> This command has been superseded by `pamcrater`, `pamshadedrelief`, and `pamtopnm`. > More information: . - View documentation for `pamcrater`: diff --git a/tldr/pgmedge b/tldr/pgmedge index 4d466298..6696a670 100644 --- a/tldr/pgmedge +++ b/tldr/pgmedge @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmedge -> This command is superseded by `pamedge`. +> This command has been superseded by `pamedge`. > More information: . - View documentation for the current command: diff --git a/tldr/pgmnorm b/tldr/pgmnorm index 2bcb15e9..b3bf805f 100644 --- a/tldr/pgmnorm +++ b/tldr/pgmnorm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmnorm -> This command is superseded by `pnmnorm`. +> This command has been superseded by `pnmnorm`. > More information: . - View documentation for the current command: diff --git a/tldr/pgmoil b/tldr/pgmoil index 5c67a3be..e481dc7d 100644 --- a/tldr/pgmoil +++ b/tldr/pgmoil @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmoil -> This command is superseded by `pamoil`. +> This command has been superseded by `pamoil`. > More information: . - View documentation for the current command: diff --git a/tldr/pgmslice b/tldr/pgmslice index cc1d73dd..7045e53c 100644 --- a/tldr/pgmslice +++ b/tldr/pgmslice @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmslice -> This command is superseded by `pamslice`. +> This command has been superseded by `pamslice`. > More information: . - View documentation for the current command: diff --git a/tldr/pgmtopbm b/tldr/pgmtopbm index cb57863d..02d5067e 100644 --- a/tldr/pgmtopbm +++ b/tldr/pgmtopbm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pgmtopbm -> This command is superseded by `pamditherbw`. +> This command has been superseded by `pamditherbw`. > More information: . - View documentation for the current command: diff --git a/tldr/pngtopnm b/tldr/pngtopnm index de3514ba..6856445f 100644 --- a/tldr/pngtopnm +++ b/tldr/pngtopnm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pngtopnm -> This command is superseded by `pngtopam`. +> This command has been superseded by `pngtopam`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmarith b/tldr/pnmarith index cd17b228..f9a5cb8f 100644 --- a/tldr/pnmarith +++ b/tldr/pnmarith @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmarith -> This command is superseded by `pamarith`. +> This command has been superseded by `pamarith`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmcomp b/tldr/pnmcomp index 743a3a40..93e52041 100644 --- a/tldr/pnmcomp +++ b/tldr/pnmcomp @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmcomp -> This command is superseded by `pamcomp`. +> This command has been superseded by `pamcomp`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmcut b/tldr/pnmcut index b9ce3417..b4e68bc3 100644 --- a/tldr/pnmcut +++ b/tldr/pnmcut @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmcut -> This command is superseded by `pamcut`. +> This command has been superseded by `pamcut`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmenlarge b/tldr/pnmenlarge index 3a44b998..9da61645 100644 --- a/tldr/pnmenlarge +++ b/tldr/pnmenlarge @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmenlarge -> This command is superseded by `pamenlarge`. +> This command has been superseded by `pamenlarge`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmfile b/tldr/pnmfile index 7ec09526..0e65baec 100644 --- a/tldr/pnmfile +++ b/tldr/pnmfile @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmfile -> This command is superseded by `pamfile`. +> This command has been superseded by `pamfile`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmflip b/tldr/pnmflip index dc28d117..28a19d02 100644 --- a/tldr/pnmflip +++ b/tldr/pnmflip @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmflip -> This command is superseded by `pamflip`. +> This command has been superseded by `pamflip`. > More information: . - View documentation for the current command: diff --git a/tldr/pnminterp b/tldr/pnminterp index 17ac6366..14a24d89 100644 --- a/tldr/pnminterp +++ b/tldr/pnminterp @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnminterp -> This command is superseded by `pamstretch`. +> This command has been superseded by `pamstretch`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmsplit b/tldr/pnmsplit index 3b7d97c3..22bf88fd 100644 --- a/tldr/pnmsplit +++ b/tldr/pnmsplit @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmsplit -> This command is superseded by `pamsplit`. +> This command has been superseded by `pamsplit`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmtofits b/tldr/pnmtofits index 37d5d5d1..93147791 100644 --- a/tldr/pnmtofits +++ b/tldr/pnmtofits @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmtofits -> This command is superseded by `pamtofits`. +> This command has been superseded by `pamtofits`. > More information: . - View documentation for the current command: diff --git a/tldr/pnmtotiff b/tldr/pnmtotiff index b8157516..bfaf1d4c 100644 --- a/tldr/pnmtotiff +++ b/tldr/pnmtotiff @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pnmtotiff -> This command is superseded by `pamtotiff`. +> This command has been superseded by `pamtotiff`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmbrighten b/tldr/ppmbrighten index f835b40f..5706b3fe 100644 --- a/tldr/ppmbrighten +++ b/tldr/ppmbrighten @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmbrighten -> This command is superseded by `pambrighten`. +> This command has been superseded by `pambrighten`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmnorm b/tldr/ppmnorm index 4788b890..c6236182 100644 --- a/tldr/ppmnorm +++ b/tldr/ppmnorm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmnorm -> This command is superseded by `pnmnorm`. +> This command has been superseded by `pnmnorm`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmquantall b/tldr/ppmquantall index f085c6bd..e85cea93 100644 --- a/tldr/ppmquantall +++ b/tldr/ppmquantall @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmquantall -> This command is superseded by `pnmquantall`. +> This command has been superseded by `pnmquantall`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtogif b/tldr/ppmtogif index 2d228a60..78166304 100644 --- a/tldr/ppmtogif +++ b/tldr/ppmtogif @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtogif -> This command is superseded by `pamtogif`. +> This command has been superseded by `pamtogif`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtojpeg b/tldr/ppmtojpeg index 8c5429ca..66346a68 100644 --- a/tldr/ppmtojpeg +++ b/tldr/ppmtojpeg @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtojpeg -> This command is superseded by `pnmtojpeg`. +> This command has been superseded by `pnmtojpeg`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtomap b/tldr/ppmtomap index 5dd7f742..dedc9d92 100644 --- a/tldr/ppmtomap +++ b/tldr/ppmtomap @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtomap -> This command is superseded by `pnmcolormap`. +> This command has been superseded by `pnmcolormap`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtotga b/tldr/ppmtotga index 0d9bd070..ebc8383c 100644 --- a/tldr/ppmtotga +++ b/tldr/ppmtotga @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtotga -> This command is superseded by `pamtotga`. +> This command has been superseded by `pamtotga`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtouil b/tldr/ppmtouil index 03f3f42c..6d780b10 100644 --- a/tldr/ppmtouil +++ b/tldr/ppmtouil @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtouil -> This command is superseded by `pamtouil`. +> This command has been superseded by `pamtouil`. > More information: . - View documentation for the current command: diff --git a/tldr/ppmtowinicon b/tldr/ppmtowinicon index ea0719d8..5751e631 100644 --- a/tldr/ppmtowinicon +++ b/tldr/ppmtowinicon @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ppmtowinicon -> This command is superseded by `pamtowinicon`. +> This command has been superseded by `pamtowinicon`. > More information: . - View documentation for the current command: diff --git a/tldr/vim b/tldr/vim index 835ad0ce..b1d15016 100644 --- a/tldr/vim +++ b/tldr/vim @@ -24,7 +24,7 @@ source: https://github.com/tldr-pages/tldr.git - Save and quit the current buffer: -`:wq` +`{{ZZ|:wq}}` - Enter normal mode and undo the last operation: diff --git a/tldr/winicontoppm b/tldr/winicontoppm index fc990887..e42f3185 100644 --- a/tldr/winicontoppm +++ b/tldr/winicontoppm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # winicontoppm -> This command is superseded by `winicontopam`. +> This command has been superseded by `winicontopam`. > More information: . - View documentation for the current command: diff --git a/tldr/zapier b/tldr/zapier new file mode 100644 index 00000000..8e75bd63 --- /dev/null +++ b/tldr/zapier @@ -0,0 +1,38 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# zapier + +> Create, automate, and manage zapier integrations. +> Some subcommands such as `build`, `init`, `scaffold`, `push`, `test`, etc. have their own usage documentation. +> More information: . + +- Connect to a Zapier account: + +`zapier login` + +- Initialize a new Zapier integration with a project template: + +`zapier init {{path/to/directory}}` + +- Add a starting trigger, create, search, or resource to your integration: + +`zapier scaffold {{trigger|create|search|resource}} {{name}}` + +- Test an integration: + +`zapier test` + +- Build and upload an integration to Zapier: + +`zapier push` + +- Display help: + +`zapier help` + +- Display help for a specific command: + +`zapier help {{command}}`