Get-Content $user| Foreach-Object{
$user = $_.Split('=')
New-Variable -Name $user[0] -Value $user[1]}
I am trying to work with a script and split a text file into an array, breaking a file based on each new line
What should I change the = sign to
source
share