mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
6 lines
188 B
Bash
Executable File
6 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
dir="$HOME/.local/bin"
|
|
mkdir -p "$dir"
|
|
curl -L https://github.com/talos-systems/talos/releases/latest/download/talosctl-linux-amd64 -o "$dir"/talosctl
|
|
chmod +x "$dir/talosctl"
|