11 lines
291 B
Bash
Executable File
11 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing ddrescue..."
|
|
sudo pacman -S --noconfirm --needed ddrescue
|
|
|
|
log "Installing f3 (AUR)..."
|
|
yay -S --answerdiff None --answerclean All --noconfirm f3
|
|
log "Disk recovery tools installed."
|