Answers for "where is powershell file"

C
4

powershell download file

Invoke-WebRequest URL -OutFile c:\file.ext
Posted by: Guest on September-18-2020
0

powershell and command

command_1 | command_2
Posted by: Guest on April-10-2022
0

powershell -file

# This command works like bash magic.sh
   You have to create "magic.ps1" file and put some commands in there like
  # flutter clean
  # flutter pub get
To run it "powershell -File <FileName>"
  
  both commads will run synchronously
  
  first "flutter clean" will run
  then "flutter pub get" will run
  To use the powershell command you have to install extention of 
  the powershell in VScode 
  
  if you dont want to use powershell command you can use 
  bash command
  get into git terminal & run "bash magic.sh"
  this time file extention should be change ".sh"
Posted by: Guest on March-11-2022

Code answers related to "C"

Browse Popular Code Answers by Language