mirror of
https://codeberg.org/hyperreal/admin-scripts
synced 2025-01-18 07:43:44 +01:00
12 lines
213 B
Bash
Executable File
12 lines
213 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
selection=$(mc ls nas-local | awk '{print $5}' | gum choose --limit=1)
|
|
|
|
gum format -t markdown "# ${selection}"
|
|
echo ""
|
|
mc replicate status "nas-local/${selection}"
|
|
|
|
exit 0
|