How to running linux commands from powershell
My Blog:
Facebook:
Google+:
Example 1: How to create multiple user in linux, How to running linux commands from powershell.
Read data.txt file with structure the below.
Use powershell the connect to linux.
Create multiple user in linux.
---------------------------------------------------------
Code blocks
$plinkPath = "C:Usershuupv1DesktopSCRIPTplink.exe"
If (Test-Path $plinkPath) {
Set-Alias plink $plinkPath
}
Else {
Throw "PLink.exe is required"
}
$lines = Get-Content data.txt
foreach ($line in $lines) {
$fields = $line -split 's+'
foreach ($h in $fields) {
$h
$commands =
"echo 123456789 | sudo -S useradd " + $h + ";"
)
plink -ssh -pw "123456789" -t "192.168.1.112" -l "huupv" $commands
}
}
-----------------------------------------------------------
Смотрите видео plink powershell онлайн без регистрации, длительностью 03 минут 56 секунд в хорошем hd качестве. Это видео добавил пользователь Linux Operating System 24 Июнь 2016, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 11 тысяч раз и оно понравилось 2 людям.