mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-06 16:44:58 +02:00
Update manuals
This commit is contained in:
parent
5fe7530a59
commit
3f86028fa1
15
Docs/list-print-jobs.ps1.md
Normal file
15
Docs/list-print-jobs.ps1.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# PowerShell Script list-print-jobs.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
list-print-jobs.ps1
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
53
Docs/new-branch.ps1.md
Normal file
53
Docs/new-branch.ps1.md
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# PowerShell Script new-branch.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
new-branch.ps1 [<new-branch-name>] [<repo-dir>]
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates and switches to a new branch in a Git repository.
|
||||||
|
|
||||||
|
## Syntax & Parameters
|
||||||
|
```powershell
|
||||||
|
/home/mf/PowerShell/Scripts/new-branch.ps1 [[-NewBranchName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-NewBranchName <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 1
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-RepoDir <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 2
|
||||||
|
Default value "$PWD"
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```powershell
|
||||||
|
PS>.\new-branch.ps1 moonshot
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
43
Docs/new-script.ps1.md
Normal file
43
Docs/new-script.ps1.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# PowerShell Script new-script.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
new-script.ps1 [<filename>]
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates a new PowerShell script.
|
||||||
|
|
||||||
|
## Syntax & Parameters
|
||||||
|
```powershell
|
||||||
|
/home/mf/PowerShell/Scripts/new-script.ps1 [[-filename] <String>] [<CommonParameters>]
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-filename <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 1
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```powershell
|
||||||
|
PS>.\new-script.ps1 myscript.ps1
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
63
Docs/new-shortcut.ps1.md
Normal file
63
Docs/new-shortcut.ps1.md
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
# PowerShell Script new-shortcut.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
new-shortcut.ps1 [<shortcut>] [<target>] [<description>]
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates a new shortcut file.
|
||||||
|
|
||||||
|
## Syntax & Parameters
|
||||||
|
```powershell
|
||||||
|
/home/mf/PowerShell/Scripts/new-shortcut.ps1 [[-shortcut] <String>] [[-target] <String>] [[-description] <String>] [<CommonParameters>]
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-shortcut <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 1
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-target <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 2
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-description <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 3
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```powershell
|
||||||
|
PS>.\new-shortcut.ps1 C:\Temp\HDD C:\
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
14
Docs/new-symlink.ps1.md
Normal file
14
Docs/new-symlink.ps1.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# PowerShell Script new-symlink.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
53
Docs/new-tag.ps1.md
Normal file
53
Docs/new-tag.ps1.md
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# PowerShell Script new-tag.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
new-tag.ps1 [<new-tag-name>] [<repo-dir>]
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates a new tag in a Git repository.
|
||||||
|
|
||||||
|
## Syntax & Parameters
|
||||||
|
```powershell
|
||||||
|
/home/mf/PowerShell/Scripts/new-tag.ps1 [[-NewTagName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-NewTagName <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 1
|
||||||
|
Default value
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
-RepoDir <String>
|
||||||
|
|
||||||
|
Required? false
|
||||||
|
Position? 2
|
||||||
|
Default value "$PWD"
|
||||||
|
Accept pipeline input? false
|
||||||
|
Accept wildcard characters? false
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```powershell
|
||||||
|
PS>.\create-tag.ps1 v1.7
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
15
Docs/remove-print-jobs.ps1.md
Normal file
15
Docs/remove-print-jobs.ps1.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# PowerShell Script remove-print-jobs.ps1
|
||||||
|
|
||||||
|
## Synopsis & Description
|
||||||
|
```powershell
|
||||||
|
remove-print-jobs.ps1
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
[<CommonParameters>]
|
||||||
|
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1*
|
Loading…
Reference in New Issue
Block a user