This commit is contained in:
2026-02-03 12:57:06 -07:00
parent 5ad0582679
commit bdfce9a055

View File

@@ -15,7 +15,6 @@ lsblk -lno type,name | grep part | awk '{ print "/dev/" $2 }' | select_option
If you use the wrapper you can then pipe your output to more commands:
```bash
lsblk -lno type,name | grep part | awk '{ print "/dev/" $2 }' | ./wrapper.sh | xargs -I% echo Mounting %...
```
### What about bash's `select`?