I HAVE PROPLEM IN WSL < AFTER I WROTE CODE ITS CANT GIVE ME COMMAND ATand its give not found, need some help.iam testing my code and be alright is the proplem in driver or my code
#!/bin/bash# Define the serial device (update with your device name)SERIAL_DEVICE=/dev/ttyUSB0 # Adjust based on your device# Open the serial deviceexec 3<> $SERIAL_DEVICE# Send AT commandsecho -e "AT\r" >&3sleep 1echo -e "ATI\r" >&3 # Example command to get modem informationsleep 1# Read responsecat <&3# Close the serial deviceexec 3>&-exec 3<&-