diff --git a/README.md b/README.md
index 4123978..9ad8ba7 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.
|