Created
September 30, 2019 14:53
-
-
Save timotheemoulin/1d48ac23dc9c9f4b3b67558a7239cc4f to your computer and use it in GitHub Desktop.
Powershell custom functions
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
# Powershell Custom Functions | |
# Timothée Moulin | |
# | |
# Change directory to the root workspace directory | |
Function tim-goto-workspace-tim { | |
cd ~/www | |
ls | |
} | |
Set-Alias -Name www -Value tim-goto-workspace-tim | |
# Change directory and show the files | |
Function tim-cs ([String] $directory = '') { | |
cd $directory | |
ls | |
} | |
Set-Alias cs tim-cs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment