Answers for "touch in windows powershell"

1

touch in windows powershell

touch in linux == ni in powershell
//ni is alias of New-Item
so you just need : 
ni newFile.txt
Posted by: Guest on April-24-2021
1

touch in windows powershell

in powershell not cmd 
you can use 
#-------------------
ni itemname
#------------------
ni is alias for New-Item, type help New-Item for the documentation
thanks
Posted by: Guest on April-19-2021

Code answers related to "touch in windows powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language