ls '*.txt'
foreach($ficheros in (ls '*.txt').Name)
{
$ficheros.split('-')
}
foreach($ficheros in (ls '*.txt').Name)
{
$ficheros.split('-')[1]
}
foreach($ficheros in (ls '*.txt').Name)
{
$ficheros.split('-')[1].Replace('.txt','')
}
https://www.jesusninoc.com/2016/08/09/sentencia-condicional-switch/
$fichero=get-content asignaturas.txt
Get-Content $fichero | % {
$_
}
$fichero=get-content asignaturas.txt
Get-Content $fichero | % {
$_.split(',')[1]
}
$fichero=get-content asignaturas.txt
Get-Content $fichero | % {
if($_.split(',')[1] -eq 0)
{
Write-Host "CREAR"
}
if($_.split(',')[1] -eq 1)
{
Write-Host "ELIMINAR"
}
}
$a=Read-Host "Introduzca operación"
switch($a){
'+'{
echo Suma
break
}
}
$a=Read-Host "Introduzca operación"
switch($a){
'+'{
suma
break
}
}
function suma()
{
2+3
}
https://www.jesusninoc.com/2015/07/14/sentencia-condicional-if-else-2/
$numero=5
$numero%2
$numero=5
if($numero%2 -eq 0)
{
"Número par"
}
else
{
"Número impar"
}
let resto=numero%2
if [ $resto -eq 0 ]; then
echo “El numero $numero es par”
else
echo “El numero $numero es impar”
fi