Improve the description

This commit is contained in:
Markus Fleschutz 2021-09-11 10:26:47 +02:00
parent 638169cd31
commit 33bc023681
3 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ close-system-settings.ps1, closes the System Settings gracefully
close-thunderbird.ps1, closes Mozilla Thunderbird gracefully
close-vlc.ps1, closes the VLC media player gracefully
close-windows-terminal.ps1, closes Windows Terminal gracefully
copy-photos-sorted.ps1, Copies all photos sorted by year and month
copy-photos-sorted.ps1, Copy image files sorted by year and month
configure-git.ps1, sets up the Git user configuration
convert-csv2txt.ps1, converts the given CSV file into a text list
convert-mysql2csv.ps1, converts the MySQL database table to a CSV file

1 Script Description
51 close-thunderbird.ps1 closes Mozilla Thunderbird gracefully
52 close-vlc.ps1 closes the VLC media player gracefully
53 close-windows-terminal.ps1 closes Windows Terminal gracefully
54 copy-photos-sorted.ps1 Copies all photos sorted by year and month Copy image files sorted by year and month
55 configure-git.ps1 sets up the Git user configuration
56 convert-csv2txt.ps1 converts the given CSV file into a text list
57 convert-mysql2csv.ps1 converts the MySQL database table to a CSV file

View File

@ -145,7 +145,7 @@ Mega Collection of PowerShell Scripts
| [check-symlinks.ps1](Scripts/check-symlinks.ps1) | Checks every symlink in the given directory tree | [Help](Docs/check-symlinks.ps1.md) |
| [check-xml-file.ps1](Scripts/check-xml-file.ps1) | Checks the given XML file for validity | [Help](Docs/check-xml-file.ps1.md) |
| [clear-recycle-bin.ps1](Scripts/clear-recycle-bin.ps1) | Removes the content of the recycle bin folder (can not be undo!) | [Help](Docs/clear-recycle-bin.ps1.md) |
| [copy-photos-sorted.ps1](Scripts/copy-photos-sorted.ps1) | Copies all photos sorted by year and month | [Help](Docs/copy-photos-sorted.ps1.md) |
| [copy-photos-sorted.ps1](Scripts/copy-photos-sorted.ps1) | Copy image files sorted by year and month | [Help](Docs/copy-photos-sorted.ps1.md) |
| [decrypt-file.ps1](Scripts/decrypt-file.ps1) | Encrypts the given file | [Help](Docs/decrypt-files.ps1.md) |
| [download-dir.ps1](Scripts/download-dir.ps1) | Downloads a directory tree from the given URL | [Help](Docs/download-dir.ps1.md) |
| [download-file.ps1](Scripts/download-file.ps1) | Downloads a file from the given URL | [Help](Docs/download-file.ps1.md) |

View File

@ -2,7 +2,7 @@
.SYNOPSIS
copy-photos-sorted.ps1 [<SourceDir>] [<TargetDir>]
.DESCRIPTION
Copies all photos in SourceDir to TargetDir sorted by year and month.
Copy image files from SourceDir to TargetDir sorted by year and month.
.EXAMPLE
PS> .\copy-photos-sorted.ps1 D:\Mobile\DCIM C:\MyPhotoAlbum
.NOTES