Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion unix/launch_script_bootable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ showCaseDirOptions () {
casedirremovable=( $(lsblk -lno NAME,RM,MOUNTPOINT,LABEL | awk '$3 != "" {print $1,$2,$3,$4}' | awk '$2 == 1 {print $3}') )
casedir=( $(lsblk -lno NAME,SIZE,MOUNTPOINT | awk '$3 != "" {print $1,$2,$3}') )
local lengthCaseDir=${#casedir[@]}
optionsCasedirLength=$(( lengthCaseDir / 3 ))
casedir[lengthCaseDir]="No Drive to Choose"
optionsCasedirLength=$(( lengthCaseDir / 3 + 1 ))
printf "%-10s\t%-10s\t%-10s\t%-30s\t\n" "Selection" "Disk" "Size" "Mount"

echo "-----------------------------------------------------------------------------------------------------"
Expand Down