How to get block device of a USB drive attached to a qube using Bash

Extracting from qube using ‘sudo blkid’ is what finally worked…

# Get the drive sd*
drive_sd_=$(qvm-run --pass-io -u root "$target_qube" "sudo blkid | grep \"$usb_drive_UUID\" | cut -d: -f1")