diff --git a/tldr/bun-pm b/tldr/bun-pm index a460ee61..dccb2c46 100644 --- a/tldr/bun-pm +++ b/tldr/bun-pm @@ -29,9 +29,9 @@ source: https://github.com/tldr-pages/tldr.git `bun pm hash` -- Print the path to Bun's global module cache: +- List the current untrusted dependencies that contain scripts: -`bun pm cache` +`bun pm untrusted` - Migrate another package manager's lockfile without installing anything: diff --git a/tldr/bun-pm-cache b/tldr/bun-pm-cache new file mode 100644 index 00000000..9a833db0 --- /dev/null +++ b/tldr/bun-pm-cache @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bun pm cache + +> Manage Bun's cache. +> More information: . + +- Display the path to the global module cache: + +`bun pm cache` + +- Clear the global module cache: + +`bun pm cache rm` diff --git a/tldr/bun-pm-trust b/tldr/bun-pm-trust new file mode 100644 index 00000000..e2ac2d34 --- /dev/null +++ b/tldr/bun-pm-trust @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bun pm trust + +> Mark dependencies as trusted. +> See also: `bun pm untrusted`. +> More information: . + +- Trust a specific dependency and add it to `trustedDependencies`: + +`bun pm trust {{dependency_name}}` + +- Trust all currently untrusted dependencies: + +`bun pm trust --all` diff --git a/tldr/linux/alpaca b/tldr/linux/alpaca new file mode 100644 index 00000000..095021eb --- /dev/null +++ b/tldr/linux/alpaca @@ -0,0 +1,30 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# alpaca + +> A graphical frontend to chat with Ollama models. +> See also: `ollama`. +> More information: . + +- Launch Alpaca and start a new chat: + +`alpaca --new-chat "{{chat_title}}"` + +- Open Quick Ask with a message: + +`alpaca --ask "{{message}}"` + +- List all activities that can be launched with `--activity`: + +`alpaca --list-activities` + +- Open an activity: + +`alpaca --activity {{activity}}` + +- List all current chats: + +`alpaca --list-chats` diff --git a/tldr/linux/ascii-xfr b/tldr/linux/ascii-xfr new file mode 100644 index 00000000..a2462101 --- /dev/null +++ b/tldr/linux/ascii-xfr @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# ascii-xfr + +> Transfer files using the ASCII protocol. +> Part of `minicom`. +> More information: . + +- Send a file: + +`ascii-xfr -s {{path/to/file}}` + +- Receive a file: + +`ascii-xfr -r {{path/to/file}}`