Last active
December 12, 2015 08:09
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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