a lot
Modified shell-loading-snippets DockerNetwork support better l and ll dot the pipe
This commit is contained in:
parent
50d9aef264
commit
86fdee1acc
|
@ -1 +1 @@
|
|||
ls
|
||||
_ll
|
||||
|
|
|
@ -1 +1 @@
|
|||
ls
|
||||
_ll
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
filter dot([string]$Parameter){ $_ | Select-Object -ExpandProperty $Parameter }
|
||||
|
||||
Set-Alias : dot
|
||||
Set-Alias _ dot
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"omp": "~/.oh-my-posh.omp.json",
|
||||
"profile": [
|
||||
"~/.profile",
|
||||
"/profile": [
|
||||
"/etc/profile",
|
||||
"/etc/profile.d/"
|
||||
],
|
||||
"profile": "~/.profile",
|
||||
"bashrc": "~/.bashrc",
|
||||
"zshrc": "~/.zshrc",
|
||||
"zsys": "/etc/zsys.conf",
|
||||
"/zsys": "/etc/zsys.conf",
|
||||
"shrc": "~/.shrc",
|
||||
"sz-aliases-sh": "~/.sz.aliases.sh",
|
||||
"sz-shrc": [
|
||||
|
@ -27,6 +27,7 @@
|
|||
"@shell-loading-snippets/zsh"
|
||||
],
|
||||
"sz-rc-all": [
|
||||
"#profile",
|
||||
"#sz-aliases-sh",
|
||||
"#sz-local-rc",
|
||||
"#sz-shrc",
|
||||
|
@ -34,7 +35,7 @@
|
|||
"#zshrc"
|
||||
],
|
||||
"sz-local-rc": "~/.sz.local.sh",
|
||||
"ansible": [
|
||||
"/ansible": [
|
||||
"/etc/ansible/ansible.cfg",
|
||||
"/opt/ansible/ansible.cfg",
|
||||
"/opt/ansible/hosts"
|
||||
|
@ -67,6 +68,6 @@
|
|||
"ssh-auth": "~/.ssh/authorized_keys",
|
||||
"ssh-known": "~/.ssh/known_hosts",
|
||||
"ssh-conf": "~/.ssh/config",
|
||||
"sshd-conf": "/etc/ssh/sshd_config",
|
||||
"/sshd-conf": "/etc/ssh/sshd_config",
|
||||
"ssh" : [ "#ssh-auth", "#ssh-known", "#ssh-conf", "#sshd-conf", "#ssh-pub", "#ssh-id" ]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
[CmdletBinding()]param()
|
||||
|
||||
$(docker network ls -q) |
|
||||
ForEach-Object {
|
||||
$local:tmpObj = docker inspect $_ | ConvertFrom-Json |
|
||||
Select-Object *,@{L='Subnet';E={$_.IPAM.Config[0].Subnet}}
|
||||
|
||||
$tmpObj.PSObject.TypeNames.Insert(0,"DockerNetworksOutput")
|
||||
$tmpObj
|
||||
} # | Format-Table @{E='Id';W=12},Name,Driver,Scope,Subnet
|
||||
|
||||
|
|
@ -69,5 +69,32 @@ PortBindings</Label> </TableColumnHeader>
|
|||
</TableControl>
|
||||
</View>
|
||||
|
||||
<View>
|
||||
<Name>lsdn</Name>
|
||||
<ViewSelectedBy>
|
||||
<TypeName>DockerNetworksOutput</TypeName>
|
||||
</ViewSelectedBy>
|
||||
<TableControl>
|
||||
<TableHeaders>
|
||||
<TableColumnHeader> <Width>13</Width> <Label>Id</Label> </TableColumnHeader>
|
||||
<TableColumnHeader> <Width>27</Width> <Label>Name</Label> </TableColumnHeader>
|
||||
<TableColumnHeader> <Width>8</Width> <Label>Driver</Label> </TableColumnHeader>
|
||||
<TableColumnHeader> <Width>8</Width> <Label>Scope</Label> </TableColumnHeader>
|
||||
<TableColumnHeader> <Width>40</Width> <Label>Subnet</Label> </TableColumnHeader>
|
||||
</TableHeaders>
|
||||
<TableRowEntries>
|
||||
<TableRowEntry>
|
||||
<Wrap/>
|
||||
<TableColumnItems>
|
||||
<TableColumnItem> <ScriptBlock>$_.Id -replace '^(.{12}).*$','$1…'</ScriptBlock> </TableColumnItem>
|
||||
<TableColumnItem> <PropertyName>Name</PropertyName> </TableColumnItem>
|
||||
<TableColumnItem> <PropertyName>Driver</PropertyName> </TableColumnItem>
|
||||
<TableColumnItem> <PropertyName>Scope</PropertyName> </TableColumnItem>
|
||||
<TableColumnItem> <PropertyName>Subnet</PropertyName> </TableColumnItem>
|
||||
</TableColumnItems>
|
||||
</TableRowEntry>
|
||||
</TableRowEntries>
|
||||
</TableControl>
|
||||
</View>
|
||||
</ViewDefinitions>
|
||||
</Configuration>
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
echo "$(date) SZ_SKIP_DEFAULT_SHELL='$SZ_SKIP_DEFAULT_SHELL'; snippet/bash" >> /tmp/default_shell
|
||||
|
||||
## Place the following line at the top of your .zshrc to make powershell your default shell.
|
||||
## __P=".local/share/powershell/Scripts/shell-loading-snippets/$(basename $SHELL)"; find ~/$__P -exec true \; && . ~/$__P
|
||||
|
||||
function PowerShellLauncher() {
|
||||
|
||||
export SZ_POWERSHELL_LAUNCER_CALLED=1
|
||||
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
if [[ -x ~/.dotnet/tools/pwsh && "1" != "$(which pwsh > /dev/null && echo 1)" ]]; then
|
||||
PWSH='~/.dotnet/tools/pwsh'
|
||||
alias pwsh="$PWSH "
|
||||
|
@ -22,3 +30,6 @@ if [[ "$SZ_SKIP_DEFAULT_SHELL" != "1" ]]; then
|
|||
fi
|
||||
echo "continue" >> /tmp/default_shell
|
||||
export SZ_SKIP_DEFAULT_SHELL=1
|
||||
}
|
||||
|
||||
[[ "$SZ_POWERSHELL_LAUNCER_CALLED" != "1" ]] && PowerShellLauncher
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
echo "$(date) SZ_SKIP_DEFAULT_SHELL='$SZ_SKIP_DEFAULT_SHELL'; snippet/sh" >> /tmp/default_shell
|
||||
|
||||
## Place the following line at the top of your .zshrc to make powershell your default shell.
|
||||
## __P=".local/share/powershell/Scripts/shell-loading-snippets/$(basename $SHELL)"; find ~/$__P -exec true \; && . ~/$__P
|
||||
|
||||
function PowerShellLauncher() {
|
||||
|
||||
export SZ_POWERSHELL_LAUNCER_CALLED=1
|
||||
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
if [[ -x ~/.dotnet/tools/pwsh && "1" != "$(which pwsh > /dev/null && echo 1)" ]]; then
|
||||
PWSH='~/.dotnet/tools/pwsh'
|
||||
alias pwsh="$PWSH "
|
||||
|
@ -22,3 +30,6 @@ if [[ "$SZ_SKIP_DEFAULT_SHELL" != "1" ]]; then
|
|||
fi
|
||||
echo "continue" >> /tmp/default_shell
|
||||
export SZ_SKIP_DEFAULT_SHELL=1
|
||||
}
|
||||
|
||||
[[ "$SZ_POWERSHELL_LAUNCER_CALLED" != "1" ]] && PowerShellLauncher
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
echo "$(date) SZ_SKIP_DEFAULT_SHELL='$SZ_SKIP_DEFAULT_SHELL'; snippet/zsh" >> /tmp/default_shell
|
||||
|
||||
## Place the following line at the top of your .zshrc to make powershell your default shell.
|
||||
## __P=".local/share/powershell/Scripts/shell-loading-snippets/$(basename $SHELL)"; find ~/$__P -exec true \; && . ~/$__P
|
||||
function PowerShellLauncher() {
|
||||
|
||||
export SZ_POWERSHELL_LAUNCER_CALLED=1
|
||||
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
if [[ -x ~/.dotnet/tools/pwsh && "1" != "$(which pwsh > /dev/null && echo 1)" ]]; then
|
||||
PWSH='~/.dotnet/tools/pwsh'
|
||||
|
@ -23,3 +30,6 @@ fi
|
|||
echo "continue" >> /tmp/default_shell
|
||||
export SZ_SKIP_DEFAULT_SHELL=1
|
||||
|
||||
}
|
||||
|
||||
[[ "$SZ_POWERSHELL_LAUNCER_CALLED" != "1" ]] && PowerShellLauncher
|
||||
|
|
Loading…
Reference in New Issue