diff --git a/tldr/linux/fbi b/tldr/linux/fbi new file mode 100644 index 00000000..1b8207d6 --- /dev/null +++ b/tldr/linux/fbi @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# fbi + +> Display images in a terminal framebuffer. +> More information: . + +- Display an image: + +`sudo fbi {{path/to/file}}` + +- Display multiple images: + +`sudo fbi {{path/to/file1 path/to/file2 ...}}` + +- Start a slideshow with a custom delay (in seconds): + +`sudo fbi {{[-t|--timeout]}} {{delay}} {{path/to/files/*}}` + +- Scale the image to fit the screen: + +`sudo fbi {{[-a|--autozoom]}} {{path/to/file}}` + +- Display help: + +`fbi {{[-h|--help]}}` diff --git a/tldr/linux/systemctl-start b/tldr/linux/systemctl-start new file mode 100644 index 00000000..dcb6a35b --- /dev/null +++ b/tldr/linux/systemctl-start @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# systemctl start + +> Start systemd units. +> More information: . + +- Start a unit: + +`systemctl start {{unit}}` diff --git a/tldr/linux/systemctl-stop b/tldr/linux/systemctl-stop new file mode 100644 index 00000000..c91006e4 --- /dev/null +++ b/tldr/linux/systemctl-stop @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# systemctl stop + +> Stop systemd units. +> More information: . + +- Stop a unit: + +`systemctl stop {{unit}}` + +- Stop a service and suppress warnings: + +`systemctl stop --no-warn {{unit}}` diff --git a/tldr/plink b/tldr/plink new file mode 100644 index 00000000..453b431b --- /dev/null +++ b/tldr/plink @@ -0,0 +1,14 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# plink + +> PuTTy's command line utility. +> See also: `ssh`. +> More information: . + +- Connect to an address: + +`plink {{IP_address}}` diff --git a/tldr/sftp b/tldr/sftp index ec1a9277..bd181bc4 100644 --- a/tldr/sftp +++ b/tldr/sftp @@ -24,15 +24,15 @@ source: https://github.com/tldr-pages/tldr.git - Transfer remote file to the local system: -`get {{path/remote_file}}` +`get {{path/to/remote_file}}` - Transfer local file to the remote system: -`put /{{path/local_file}}` +`put {{path/to/local_file}}` - Transfer remote directory to the local system recursively (works with `put` too): -`get -R {{path/remote_directory}}` +`get -R {{path/to/remote_directory}}` - Get list of files on local machine: