- sudo cat /etc/NetworkManager/system-connections/*
- See on value
psk=YOUR_WIFI_PASSWORD
or you can use grep for filter
- sudo cat /etc/NetworkManager/system-connections/* | grep -i -A 10 "YOUR_WIFI_SSID_NAME"
-i
for incase-sensitive
-A 10
for show 10 line after found text