Since people are curious Ill explain why:

I need to build our project from the remote repo using a PowerShell script (.ps1). I’m using Bash in the VSCode terminal, I have to run the .ps1 script in a new Command Prompt because the compilation takes around 5 minutes and I need my terminal for other things. To do this, the only way is to run a batch file that executes the .ps1 script.

Its an automation so I dont need to touch powershell whatsover and remain in bash terminal. Instead of opening several windows, I automated all so it only takes 1 alias to compile my shit.

The compilation also requires several inputs and “Key Presses”, so I automated all of that in the Batch file.

  • beeng@discuss.tchncs.de
    link
    fedilink
    arrow-up
    2
    ·
    27 days ago

    Command prompt is CMD and batch script, Powershell is Pwsh and .ps1, then bash is .sh.

    You’ve confused a few things here…

    FYI, open a powershell terminal separately, to the path of your script (powershell in file Explorer path) and run your script.

    Do rest of Work in Vscode

    Done.

  • ArchAengelus@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    2
    ·
    28 days ago

    Please explain why you don’t open powershell and run cmd.exe instead of running bash? This is a strange workaround and doesn’t really make sense.

  • Ms. ArmoredThirteen@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    27 days ago

    My work someone made a robust automated build script, and they left so someone else made a wrapper around it to make it easier to work with, they’re gone now and someone wrote a wrapper around that to extend functionality in a backwards compatible way, but it’s overly complicated for my minimal use cases so I wrote a batch file to call it with my default settings…

  • tofubl@discuss.tchncs.de
    link
    fedilink
    arrow-up
    0
    ·
    28 days ago

    WSL has changed the game pretty significantly, don’t you agree? It’s not perfect, but allows me to stay firm in my resolve never to learn powershell.

    • discusseded@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      28 days ago

      After learning PowerShell and then moving to Linux and having to learn bash…I don’t get this sentiment. PS is the shit. I can make full GUI applications and automate all kinds of workflows. Their use of objects makes it so easy to extract data and utilize it. Bash feels so much more primitive and clumsy by comparison. What am I missing here?

      • manos_de_papel@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        27 days ago

        You’re missing nushell. Its the same idea as power shell, but written in rust and with better commandlet naming schemes.

        Powershell is good, but it has that Microsoft funk on it. You can tell none of the people who develop it use it much. Warts everywhere.