diff --git a/tldr/aws-cognito-idp b/tldr/aws-cognito-idp index 4ae9c467..02340cb6 100644 --- a/tldr/aws-cognito-idp +++ b/tldr/aws-cognito-idp @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws cognito-idp -> Manage Amazon Cognito user pool and its users and groups using the CLI. +> Configure an Amazon Cognito user pool and its users and groups and authenticate them. > More information: . - Create a new Cognito user pool: diff --git a/tldr/aws-dynamodb b/tldr/aws-dynamodb index 3e0ba331..bbcb3d93 100644 --- a/tldr/aws-dynamodb +++ b/tldr/aws-dynamodb @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws dynamodb -> CLI for AWS dynamodb. +> Manipulate an AWS Dynamodb database, a fast NoSQL database with predictable performance and seamless scalability. > More information: . - Create a table: diff --git a/tldr/aws-ec2 b/tldr/aws-ec2 index 6e5d8588..beb41af1 100644 --- a/tldr/aws-ec2 +++ b/tldr/aws-ec2 @@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # aws ec2 -> CLI for AWS EC2. -> Provides secure and resizable computing capacity in the AWS cloud to enable faster development and deployment of applications. +> Manage AWS EC2 instances and volumes. +> AWS EC2 provides secure and resizable computing capacity in the AWS cloud for faster development and deployment of applications. > More information: . - Display information about a specific instance: diff --git a/tldr/aws-eks b/tldr/aws-eks index 464a2c5b..7f21797e 100644 --- a/tldr/aws-eks +++ b/tldr/aws-eks @@ -5,7 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # aws eks -> CLI for Amazon EKS (Elastic Kubernetes Service). +> Manage Amazon Elastic Kubernetes Service (EKS) addons, clusters, and node groups. +> Amazon EKS is a service for easily running Kubernetes on AWS. > More information: . - Create an EKS Cluster: diff --git a/tldr/aws-iam b/tldr/aws-iam index 2d539496..d2b1c8d8 100644 --- a/tldr/aws-iam +++ b/tldr/aws-iam @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws iam -> CLI for AWS IAM. +> Interact with Identity and Access Management (IAM), a web service for securely controlling access to AWS services. > More information: . - List users: diff --git a/tldr/aws-kinesis b/tldr/aws-kinesis index 4c03722b..a60b4395 100644 --- a/tldr/aws-kinesis +++ b/tldr/aws-kinesis @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws kinesis -> Official AWS CLI for Amazon Kinesis streaming data services. +> Interact with the Amazon Kinesis Data Streams, a service that scales elastically for real-time processing of streaming big data. > More information: . - Show all streams in the account: diff --git a/tldr/aws-lambda b/tldr/aws-lambda index 19325026..8be1b4c7 100644 --- a/tldr/aws-lambda +++ b/tldr/aws-lambda @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws lambda -> CLI for AWS lambda. +> Use AWS Lambda, a compute service for running code without provisioning or managing servers. > More information: . - Run a function: diff --git a/tldr/aws-rds b/tldr/aws-rds index 49cf189f..73bb583a 100644 --- a/tldr/aws-rds +++ b/tldr/aws-rds @@ -5,8 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # aws rds -> CLI for AWS Relational Database Service. -> Create and manage relational databases. +> Use AWS Relational Database Service, a web service for setting up, operating and scaling relational databases. > More information: . - Display help for a specific RDS subcommand: diff --git a/tldr/bmptoppm b/tldr/bmptoppm new file mode 100644 index 00000000..99b85976 --- /dev/null +++ b/tldr/bmptoppm @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bmptoppm + +> This command is superseded by `bmptopnm`. +> More information: . + +- View documentation for the current command: + +`tldr bmptopnm` diff --git a/tldr/pambrighten b/tldr/pambrighten new file mode 100644 index 00000000..3fe3e885 --- /dev/null +++ b/tldr/pambrighten @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pambrighten + +> Change a PAM image's saturation and value. +> More information: . + +- Increase the saturation of each pixel by the specified percentage: + +`pambrighten -saturation {{value_percent}} {{path/to/image.pam}} > {{path/to/output.pam}}` + +- Increase the value (from the HSV color space) of each pixel by the specified percentage: + +`pambrighten -value {{value_percent}} {{path/to/image.pam}} > {{path/to/output.pam}}` diff --git a/tldr/pamcrater b/tldr/pamcrater new file mode 100644 index 00000000..f502fb8e --- /dev/null +++ b/tldr/pamcrater @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamcrater + +> Create a PAM image of cratered terrain. +> See also: `pamshadedrelief`, `ppmrelief`. +> More information: . + +- Create an image of cratered terrain with the specified dimensions: + +`pamcrater -height {{height}} -width {{width}} > {{path/to/output.pam}}` + +- Create an image containing the specified number of craters: + +`pamcrater -number {{n_craters}} > {{path/to/output.pam}}` diff --git a/tldr/pamedge b/tldr/pamedge new file mode 100644 index 00000000..39389253 --- /dev/null +++ b/tldr/pamedge @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamedge + +> Perform edge-detection on a Netpbm image. +> More information: . + +- Perform edge-detection on a Netpbm image: + +`pamedge {{path/to/input.pam}} > {{path/to/output.pam}}` diff --git a/tldr/pamexec b/tldr/pamexec new file mode 100644 index 00000000..e822e560 --- /dev/null +++ b/tldr/pamexec @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamexec + +> Execute a shell command on each image in a Netpbm file. +> See also: `pamfile`, `pampick`, `pamsplit`. +> More information: . + +- Execute a shell command on each image in a Netpbm file: + +`pamexec {{command}} {{path/to/image.pam}}` + +- Stop processing if a command terminates with a nonzero exit status: + +`pamexec {{command}} {{path/to/image.pam}} -check` diff --git a/tldr/pampick b/tldr/pampick new file mode 100644 index 00000000..357e2a2f --- /dev/null +++ b/tldr/pampick @@ -0,0 +1,14 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pampick + +> Pick images out of a multi-image Netpbm stream. +> See also: `pamfile`, `pamsplit`. +> More information: . + +- Execute a shell command on each image in a Netpbm file: + +`pampick {{image_number1 image_number2 ...}} < {{path/to/image.pam}} > {{path/to/output.pam}}` diff --git a/tldr/pamrgbatopng b/tldr/pamrgbatopng new file mode 100644 index 00000000..9254c9d0 --- /dev/null +++ b/tldr/pamrgbatopng @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamrgbatopng + +> This command is superseded by `pamtopng`. +> More information: . + +- View documentation for the current command: + +`tldr pamtopng` diff --git a/tldr/pamshadedrelief b/tldr/pamshadedrelief new file mode 100644 index 00000000..f1df9651 --- /dev/null +++ b/tldr/pamshadedrelief @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamshadedrelief + +> Generate a shaded relief from an elevation map. +> See also: `pamcrater`, `ppmrelief`. +> More information: . + +- Generate a shaded relief image with the input image interpreted as an elevation map: + +`pamshadedrelief < {{path/to/input.pam}} > {{path/to/output.pam}}` + +- Gamma adjust the image by the specified factor: + +`pamshadedrelief -gamma {{factor}} < {{path/to/input.pam}} > {{path/to/output.pam}}` diff --git a/tldr/pamslice b/tldr/pamslice new file mode 100644 index 00000000..d86800e9 --- /dev/null +++ b/tldr/pamslice @@ -0,0 +1,25 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamslice + +> Extract one line of values out of a PAM image. +> More information: . + +- Print the values of the pixels in the n'th row in a table: + +`pamslice -row {{n}} {{path/to/image.pam}}` + +- Print the values of the pixels in the n'th column in a table: + +`pamslice -column {{n}} {{path/to/image.pam}}` + +- Consider the m'th plane of the input image only: + +`pamslice -row {{n}} -plane {{m}} {{path/to/image.pam}}` + +- Produce output in a format suitable for input to an `xmgr` for visualisation: + +`pamslice -row {{n}} -xmgr {{path/to/image.pam}}` diff --git a/tldr/pamsplit b/tldr/pamsplit new file mode 100644 index 00000000..8a7a3b14 --- /dev/null +++ b/tldr/pamsplit @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamsplit + +> Split a multi-image Netpbm file into multiple single-image Netpbm files. +> See also: `pamfile`, `pampick`, `pamexec`. +> More information: . + +- Split a multi-image Netpbm file into multiple single-image Netpbm files: + +`pamsplit {{path/to/image.pam}}` + +- Specify a pattern for naming output files: + +`pamsplit {{path/to/image.pam}} {{file_%d.pam}}` diff --git a/tldr/pamtogif b/tldr/pamtogif new file mode 100644 index 00000000..771b7686 --- /dev/null +++ b/tldr/pamtogif @@ -0,0 +1,22 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamtogif + +> Convert a Netpbm image into an unanimated GIF image. +> See also: `giftopnm`, `gifsicle`. +> More information: . + +- Convert a Netpbm image into an unanimated GIF image: + +`pamtogif {{path/to/image.pam}} > {{path/to/output.gif}}` + +- Mark the specified color as transparent in the output GIF file: + +`pamtogif -transparent {{color}} {{path/to/image.pam}} > {{path/to/output.gif}}` + +- Include the specified text as a comment in the output GIF file: + +`pamtogif -comment "{{Hello World!}}" {{path/to/image.pam}} > {{path/to/output.gif}}` diff --git a/tldr/pamtopng b/tldr/pamtopng new file mode 100644 index 00000000..82d38b49 --- /dev/null +++ b/tldr/pamtopng @@ -0,0 +1,26 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamtopng + +> Convert a PAM image to PNG. +> See also: `pnmtopng`, `pngtopam`. +> More information: . + +- Convert the specified PAM image to PNG: + +`pamtopng {{path/to/image.pam}} > {{path/to/output.png}}` + +- Mark the specified color as transparent in the output image: + +`pamtopng -transparent {{color}} {{path/to/image.pam}} > {{path/to/output.png}}` + +- Include the text in the specified file as tEXt chunks in the output: + +`pamtopng -text {{path/to/file.txt}} {{path/to/image.pam}} > {{path/to/output.png}}` + +- Cause the output file to be interlaced in Adam7 format: + +`pamtopng -interlace {{path/to/image.pam}} > {{path/to/output.png}}` diff --git a/tldr/pamtouil b/tldr/pamtouil new file mode 100644 index 00000000..dd5c30cb --- /dev/null +++ b/tldr/pamtouil @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pamtouil + +> Convert a PNM or PAM file into a Motif UIL icon file. +> More information: . + +- Convert a PNM or PAM file into a Motif UIL icon file: + +`pamtouil {{path/to/input.pnm|pam}} > {{path/to/output.uil}}` + +- Specify a prefix string to be printed in the output UIL file: + +`pamtouil -name {{uilname}} {{path/to/input.pnm|pam}} > {{path/to/output.uil}}` diff --git a/tldr/pcdindex b/tldr/pcdindex new file mode 100644 index 00000000..b9c5945d --- /dev/null +++ b/tldr/pcdindex @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pcdindex + +> This command has been renamed to `pcdovtoppm`. +> More information: . + +- View documentation for the command under its current name: + +`tldr pcdovtoppm` diff --git a/tldr/pcdovtoppm b/tldr/pcdovtoppm new file mode 100644 index 00000000..640a7d1e --- /dev/null +++ b/tldr/pcdovtoppm @@ -0,0 +1,25 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pcdovtoppm + +> Create an index image for a photo CD based on its overview file. +> More information: . + +- Create a PPM index image from a PCD overview file: + +`pcdovtoppm {{path/to/file.pcd}} > {{path/to/output.ppm}}` + +- Specify the [m]aximum width of the output image and the maximum [s]ize of each of the images contained in the output: + +`pcdovtoppm -m {{width}} -s {{size}} {{path/to/file.pcd}} > {{path/to/output.ppm}}` + +- Specify the maximum number of images [a]cross and the maximum number of [c]olours: + +`pcdovtoppm -a {{n_images}} -c {{n_colours}} {{path/to/file.pcd}} > {{path/to/output.ppm}}` + +- Use the specified [f]ont for annotations and paint the background [w]hite: + +`pcdovtoppm -a {{number}} -w {{path/to/file.pcd}} > {{path/to/output.ppm}}` diff --git a/tldr/pgmcrater b/tldr/pgmcrater new file mode 100644 index 00000000..c6cf8f14 --- /dev/null +++ b/tldr/pgmcrater @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pgmcrater + +> This command is superseded by `pamcrater`, `pamshadedrelief`, and `pamtopnm`. +> More information: . + +- View documentation for `pamcrater`: + +`tldr pamcrater` + +- View documentation for `pamshadedrelief`: + +`tldr pamshadedrelief` + +- View documentation for `pamtopnm`: + +`tldr pamtopnm` diff --git a/tldr/pgmedge b/tldr/pgmedge new file mode 100644 index 00000000..4d466298 --- /dev/null +++ b/tldr/pgmedge @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pgmedge + +> This command is superseded by `pamedge`. +> More information: . + +- View documentation for the current command: + +`tldr pamedge` diff --git a/tldr/pgmnorm b/tldr/pgmnorm new file mode 100644 index 00000000..2bcb15e9 --- /dev/null +++ b/tldr/pgmnorm @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pgmnorm + +> This command is superseded by `pnmnorm`. +> More information: . + +- View documentation for the current command: + +`tldr pnmnorm` diff --git a/tldr/pgmslice b/tldr/pgmslice new file mode 100644 index 00000000..cc1d73dd --- /dev/null +++ b/tldr/pgmslice @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pgmslice + +> This command is superseded by `pamslice`. +> More information: . + +- View documentation for the current command: + +`tldr pamslice` diff --git a/tldr/pgmtopbm b/tldr/pgmtopbm new file mode 100644 index 00000000..cb57863d --- /dev/null +++ b/tldr/pgmtopbm @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pgmtopbm + +> This command is superseded by `pamditherbw`. +> More information: . + +- View documentation for the current command: + +`tldr pamditherbw` diff --git a/tldr/pngtopam b/tldr/pngtopam new file mode 100644 index 00000000..f32c3855 --- /dev/null +++ b/tldr/pngtopam @@ -0,0 +1,26 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pngtopam + +> Convert a PNG image to a Netpbm image. +> See also: `pamtopng`. +> More information: . + +- Convert the specified PNG image to a Netpbm image: + +`pngtopam {{path/to/image.png}} > {{path/to/output.pam}}` + +- Create an output image that includes both the main image and transparency mask of the input image: + +`pngtopam -alphapam {{path/to/image.png}} > {{path/to/output.pam}}` + +- Replace transparent pixels by the specified color: + +`pngtopam -mix -background {{color}} {{path/to/image.png}} > {{path/to/output.pam}}` + +- Write tEXt chunks found in the input image to the specified text file: + +`pngtopam -text {{path/to/file.txt}} {{path/to/image.png}} > {{path/to/output.pam}}` diff --git a/tldr/pnmcut b/tldr/pnmcut new file mode 100644 index 00000000..b9ce3417 --- /dev/null +++ b/tldr/pnmcut @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnmcut + +> This command is superseded by `pamcut`. +> More information: . + +- View documentation for the current command: + +`tldr pamcut` diff --git a/tldr/pnmenlarge b/tldr/pnmenlarge new file mode 100644 index 00000000..3a44b998 --- /dev/null +++ b/tldr/pnmenlarge @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnmenlarge + +> This command is superseded by `pamenlarge`. +> More information: . + +- View documentation for the current command: + +`tldr pamenlarge` diff --git a/tldr/pnmfile b/tldr/pnmfile new file mode 100644 index 00000000..7ec09526 --- /dev/null +++ b/tldr/pnmfile @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnmfile + +> This command is superseded by `pamfile`. +> More information: . + +- View documentation for the current command: + +`tldr pamfile` diff --git a/tldr/pnmflip b/tldr/pnmflip new file mode 100644 index 00000000..dc28d117 --- /dev/null +++ b/tldr/pnmflip @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnmflip + +> This command is superseded by `pamflip`. +> More information: . + +- View documentation for the current command: + +`tldr pamflip` diff --git a/tldr/pnminterp b/tldr/pnminterp new file mode 100644 index 00000000..17ac6366 --- /dev/null +++ b/tldr/pnminterp @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnminterp + +> This command is superseded by `pamstretch`. +> More information: . + +- View documentation for the current command: + +`tldr pamstretch` diff --git a/tldr/pnmsplit b/tldr/pnmsplit new file mode 100644 index 00000000..3b7d97c3 --- /dev/null +++ b/tldr/pnmsplit @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pnmsplit + +> This command is superseded by `pamsplit`. +> More information: . + +- View documentation for the current command: + +`tldr pamsplit` diff --git a/tldr/ppmbrighten b/tldr/ppmbrighten new file mode 100644 index 00000000..f835b40f --- /dev/null +++ b/tldr/ppmbrighten @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmbrighten + +> This command is superseded by `pambrighten`. +> More information: . + +- View documentation for the current command: + +`tldr pambrighten` diff --git a/tldr/ppmnorm b/tldr/ppmnorm new file mode 100644 index 00000000..4788b890 --- /dev/null +++ b/tldr/ppmnorm @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmnorm + +> This command is superseded by `pnmnorm`. +> More information: . + +- View documentation for the current command: + +`tldr pnmnorm` diff --git a/tldr/ppmtogif b/tldr/ppmtogif new file mode 100644 index 00000000..2d228a60 --- /dev/null +++ b/tldr/ppmtogif @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmtogif + +> This command is superseded by `pamtogif`. +> More information: . + +- View documentation for the current command: + +`tldr pamtogif` diff --git a/tldr/ppmtojpeg b/tldr/ppmtojpeg new file mode 100644 index 00000000..8c5429ca --- /dev/null +++ b/tldr/ppmtojpeg @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmtojpeg + +> This command is superseded by `pnmtojpeg`. +> More information: . + +- View documentation for the current command: + +`tldr pnmtojpeg` diff --git a/tldr/ppmtomap b/tldr/ppmtomap new file mode 100644 index 00000000..5dd7f742 --- /dev/null +++ b/tldr/ppmtomap @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmtomap + +> This command is superseded by `pnmcolormap`. +> More information: . + +- View documentation for the current command: + +`tldr pnmcolormap` diff --git a/tldr/ppmtouil b/tldr/ppmtouil new file mode 100644 index 00000000..03f3f42c --- /dev/null +++ b/tldr/ppmtouil @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ppmtouil + +> This command is superseded by `pamtouil`. +> More information: . + +- View documentation for the current command: + +`tldr pamtouil`