cat /etc/oratab | grep -e "^[\a-Az-Z0-9\]\{0,8\}\:*/[[:graph:]]*"
Hints:-
Always use caret "^" and "$" without escape "\" like "^[[:digit:]]" or "$[[:digit:]]" .
To include forward search use "\+" or "*" like "^[[:graph:]]\+" or "^[[:digit:]]*" .
cat /etc/oratab | grep -e "^[\a-Az-Z0-9\]\{0,8\}\:*/[[:graph:]]*"
Hints:-
Always use caret "^" and "$" without escape "\" like "^[[:digit:]]" or "$[[:digit:]]" .
To include forward search use "\+" or "*" like "^[[:graph:]]\+" or "^[[:digit:]]*" .
Step 1: Install OpenSSH Server You can do this via PowerShell (run as Administrator ): Check if it's already available: Get-WindowsCapab...