Skip to content

Instantly share code, notes, and snippets.

View cognivore's full-sized avatar
💭
https://doma.dev

cognivore

💭
https://doma.dev
View GitHub Profile
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
if( $found ){
$remoteport = $matches[0];
} else{
echo "The Script Exited, the ip address of WSL 2 cannot be found";
exit;
}