Skip to content

Instantly share code, notes, and snippets.

@gabrieljoelc
Last active December 12, 2015 08:09
Show Gist options
  • Save gabrieljoelc/4742252 to your computer and use it in GitHub Desktop.
Save gabrieljoelc/4742252 to your computer and use it in GitHub Desktop.
Unix/Linux PowerShell command equivalents (Unix/Linux commands come first and then the equivalent PowerShell command.
# Create a directory
mkdir -p site/public
New-Item -ItemType directory -Path site/public
#create filename.txt
touch filename.txt
echo $null > filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment