MissouriMRDT / Autonomy_Software

Unused variable SH-2034
Anti-pattern
Major
3 days ago13 days old
escaped_toggle_command appears unused. Verify use (or export if used externally)
 1#!/usr/bin/env bash
 2# This script will toggle cowsay on or off.
 3toggle_command="/usr/games/fortune"
 4escaped_toggle_command=$(sed 's/[\/&]/\\&/g' <<< "$toggle_command") 5bashrc_path="/root/.bashrc"
 6
 7# Check if the command is already commented out in .bashrc.
TORCH_CUDA_VERSION appears unused. Verify use (or export if used externally)
 5
 6# Install Variables
 7TORCH_VERSION="2.2.2"
 8TORCH_CUDA_VERSION="cu121" 9
10# Define Package URL
11FILE_URL="https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/pytorch/arm64/pytorch_${TORCH_VERSION}_arm64.deb"