diff --git a/tldr/(( b/tldr/(( new file mode 100644 index 00000000..11da00c2 --- /dev/null +++ b/tldr/(( @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# (( + +> This command is an alias of `let`. + +- View documentation for the original command: + +`tldr let` diff --git a/tldr/bun-build b/tldr/bun-build index e54b349f..373c81bf 100644 --- a/tldr/bun-build +++ b/tldr/bun-build @@ -38,4 +38,4 @@ source: https://github.com/tldr-pages/tldr.git - Bundle with external dependencies not included in the output: -`bun build {{path/to/entry.ts}} --outfile {{path/to/output.js}} --external {{react react-dom}}` +`bun build {{path/to/entry.ts}} --outfile {{path/to/output.js}} {{[-e|--external]}} {{react react-dom}}` diff --git a/tldr/linux/apptainer-inspect b/tldr/linux/apptainer-inspect new file mode 100644 index 00000000..50446c5e --- /dev/null +++ b/tldr/linux/apptainer-inspect @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# apptainer inspect + +> Display metadata of Apptainer container images. +> More information: . + +- Show the labels of an image (default): + +`apptainer inspect {{path/to/image.sif}}` + +- Show the definition file used to build the image: + +`apptainer inspect {{[-d|--deffile]}} {{path/to/image.sif}}` + +- Show the runscript for the image: + +`apptainer inspect {{[-r|--runscript]}} {{path/to/image.sif}}` + +- Show the environment variables of the image: + +`apptainer inspect {{[-e|--environment]}} {{path/to/image.sif}}` + +- List all apps in the container: + +`apptainer inspect --list-apps {{path/to/image.sif}}` + +- Show all available data in JSON format: + +`apptainer inspect --all {{path/to/image.sif}}` + +- Display help: + +`apptainer inspect {{[-h|--help]}}`