mirror of
https://github.com/cmderdev/cmder.git
synced 2025-02-22 21:30:23 +08:00
5 lines
153 B
PowerShell
5 lines
153 B
PowerShell
# Autoinclude every .ps1 script in the autorun folder.
|
|
Get-ChildItem -Filter *.ps1 -File "$PSScriptRoot\autorun\" | ForEach-Object {
|
|
. $_.FullName
|
|
}
|