10 lines
289 B
Bash
Executable File
10 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing networking CLI tools..."
|
|
sudo pacman -S --noconfirm --needed \
|
|
httpie ipcalc mitmproxy mtr net-tools nethogs \
|
|
nmap tcpdump traceroute
|
|
log "Networking CLI tools installed."
|