-
-
Save la11111/3916398 to your computer and use it in GitHub Desktop.
Colourized PowerShell ls command
This file contains 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
#Forked this, and ended up writing this: | |
#https://gist.github.com/3922035 | |
#Credit: this file was my inspiration. | |
# | |
# -la11111 | |
#First in your powershell profile in | |
#C:\Users\<<username>>\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 | |
set-location D:\code | |
. "C:\Users\<<username>>\Documents\WindowsPowerShell\Get-ChildItemColor.ps1" # read the colourized ls | |
set-alias ls Get-ChildItemColor -force -option allscope | |
function Get-ChildItem-Force { ls -Force } | |
set-alias la Get-ChildItem-Force -option allscope | |
#Then in: | |
#C:\Users\<<username>>\Documents\WindowsPowerShell\Get-ChildItemColor.ps1 | |
function Get-ChildItemColor { | |
<# | |
.Synopsis | |
Returns childitems with colors by type. | |
From http://poshcode.org/?show=878 | |
.Description | |
This function wraps Get-ChildItem and tries to output the results | |
color-coded by type: | |
Compressed - Yellow | |
Directories - Dark Cyan | |
Executables - Green | |
Text Files - Cyan | |
Others - Default | |
.ReturnValue | |
All objects returned by Get-ChildItem are passed down the pipeline | |
unmodified. | |
.Notes | |
NAME: Get-ChildItemColor | |
AUTHOR: Tojo2000 <[email protected]> | |
#> | |
$regex_opts = ([System.Text.RegularExpressions.RegexOptions]::IgnoreCase ` | |
-bor [System.Text.RegularExpressions.RegexOptions]::Compiled) | |
$fore = $Host.UI.RawUI.ForegroundColor | |
$compressed = New-Object System.Text.RegularExpressions.Regex( | |
'\.(zip|tar|gz|rar)$', $regex_opts) | |
$executable = New-Object System.Text.RegularExpressions.Regex( | |
'\.(exe|bat|cmd|py|pl|ps1|psm1|vbs|rb|reg|fsx)$', $regex_opts) | |
$dll_pdb = New-Object System.Text.RegularExpressions.Regex( | |
'\.(dll|pdb)$', $regex_opts) | |
$configs = New-Object System.Text.RegularExpressions.Regex( | |
'\.(config|conf|ini)$', $regex_opts) | |
$text_files = New-Object System.Text.RegularExpressions.Regex( | |
'\.(txt|cfg|conf|ini|csv|log)$', $regex_opts) | |
Invoke-Expression ("Get-ChildItem $args") | | |
%{ | |
$c = $fore | |
if ($_.GetType().Name -eq 'DirectoryInfo') { | |
$c = 'DarkCyan' | |
} elseif ($compressed.IsMatch($_.Name)) { | |
$c = 'Yellow' | |
} elseif ($executable.IsMatch($_.Name)) { | |
$c = 'Green' | |
} elseif ($text_files.IsMatch($_.Name)) { | |
$c = 'Cyan' | |
} elseif ($dll_pdb.IsMatch($_.Name)) { | |
$c = 'DarkGreen' | |
} elseif ($configs.IsMatch($_.Name)) { | |
$c = 'Yellow' | |
} | |
$Host.UI.RawUI.ForegroundColor = $c | |
echo $_ | |
$Host.UI.RawUI.ForegroundColor = $fore | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment