Note: This cannot recover the WiFi password used in setup. Additionally, you must have Crouton installed.
Ctrl-Alt-T
shell
- Run the following:
egrep '(Name|Passphrase)=' $(sudo find /home/root -name shill.profile) |
while read l; do
[[ $l =~ Passphrase=* ]] &&
echo $(echo $l | awk -F rot47: '{print $2}' | tr '!-~' 'P-~!-O') || echo $l;
done