From 130e6c234bff83ff69d50ab89a134d4854f05b5d Mon Sep 17 00:00:00 2001 From: Torin Samuelson <53627049+TheReptar@users.noreply.github.com> Date: Tue, 13 Dec 2022 20:01:34 +0000 Subject: [PATCH] Update README.md PowerShell Script (#54) * Refactor README.md config scripts table layout * Update README.md PowerShell config script --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5693b2..d71b46f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ Put the next function into the **.bashrc** or a similar config: Bash Fish - PowerShell @@ -61,13 +60,19 @@ end ``` - + + + PowerShell + + + ```powershell function ll() { - cd "$(llama $args)" + cd $(llama $args | Out-String -Stream | Select-Object -Last 1) } ``` +See [issues/30](https://github.com/antonmedv/llama/issues/30) for more details.