NobGit
public imalexnord read

ms.open

Adds Mac "Open ." command to Windows

Languages

Repository composition by tracked source files.

PowerShell
PowerShell 100%
Create file Wiki Documentation
Clone
https://nobgit.com/user/imalexnord/ms.open.git
ssh://[email protected]:2222/user/imalexnord/ms.open.git

Trace

shell/MS.Open.ps1

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

MS.Open.ps1 on main
Author Date Commit Line Code
Alex Nord 11 days ago a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
1
# MS.Open PowerShell integration
Open commit View diff
1 # MS.Open PowerShell integration
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
2
Open commit View diff
2
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
3
function mkcd {
Open commit View diff
3 function mkcd {
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
4
    [CmdletBinding()]
Open commit View diff
4 [CmdletBinding()]
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
5
    param(
Open commit View diff
5 param(
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
6
        [Parameter(Mandatory, Position = 0)]
Open commit View diff
6 [Parameter(Mandatory, Position = 0)]
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
7
        [string]$Path
Open commit View diff
7 [string]$Path
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
8
    )
Open commit View diff
8 )
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
9
Open commit View diff
9
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
10
    $directory = New-Item -ItemType Directory -Path $Path -Force
Open commit View diff
10 $directory = New-Item -ItemType Directory -Path $Path -Force
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
11
    Set-Location -LiteralPath $directory.FullName
Open commit View diff
11 Set-Location -LiteralPath $directory.FullName
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
12
}
Open commit View diff
12 }
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
13
Open commit View diff
13
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
14
function reload {
Open commit View diff
14 function reload {
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
15
    [CmdletBinding()]
Open commit View diff
15 [CmdletBinding()]
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
16
    param()
Open commit View diff
16 param()
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
17
Open commit View diff
17
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
18
    if (-not (Test-Path -LiteralPath $PROFILE)) {
Open commit View diff
18 if (-not (Test-Path -LiteralPath $PROFILE)) {
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
19
        Write-Warning "No PowerShell profile exists at: $PROFILE"
Open commit View diff
19 Write-Warning "No PowerShell profile exists at: $PROFILE"
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
20
        return
Open commit View diff
20 return
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
21
    }
Open commit View diff
21 }
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
22
Open commit View diff
22
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
23
    . $PROFILE
Open commit View diff
23 . $PROFILE
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
24
    Write-Host "Reloaded $PROFILE"
Open commit View diff
24 Write-Host "Reloaded $PROFILE"
same change a6e9016

Added more mac commmands

Full commit hash
a6e9016ab8de81fdc3afb3d4d20e378cf4a6a92f
Author
Alex Nord <[email protected]>
Date
11 days ago
Selected line
25
}
Open commit View diff
25 }