5 lines
126 B
Bash
5 lines
126 B
Bash
#!/bin/bash
|
|
tmpFile="$(mktemp -u)"
|
|
|
|
curl -so "$tmpFile" https://ohmyposh.dev/install.sh
|
|
bash "$tmpFile" -d "$HOME"/.local/bin
|