Mostrando postagens com marcador repository. Mostrar todas as postagens
Mostrando postagens com marcador repository. Mostrar todas as postagens

sábado, 26 de fevereiro de 2022

 Como instalar Powershell no Linux Ubuntu (from Microsoft):


  • PowerShell 7.2.1 (pacote universal) para qualquer versão de suporte do Ubuntu
    • https://github.com/PowerShell/PowerShell/releases/download/v7.2.1/powershell-lts_7.2.1-1.deb_amd64.deb
    • # Install the downloaded package sudo dpkg -i powershell-lts_7.2.1-1.deb_amd64.deb
    • # Resolve missing dependencies and finish the install (if necessary) sudo apt-get install -f

# Start PowerShell pwsh



Decorator Powershell Design Patterns

 Powershell Design Patterns Decorator ```powershell # Classe base 'Beverage' class Beverage {     [string]$description = "Unkno...