Update getSize() regex

This commit is contained in:
Santiago Lo Coco 2022-01-03 18:08:02 -03:00
parent 554d973945
commit 44947d7bf8
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ partDisks() {
getSize() {
sizeStr=$(whiptail --inputbox "Enter the size of the ${1} (in GB)." 0 0 3>&1 1>&2 2>&3)
exitIfCancel "You must enter a size." "partDisks"
echo "$sizeStr" | awk -F'[^0-9]+' '{ print $1 }'
echo "$sizeStr" | awk -F'[^0-9.,]+' '{ print $1 }'
}
createSwapfile() {