Last active
September 8, 2022 10:32
-
-
Save mirontoli/74540e934641f88cea195958d4f09b47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for downloading pictures | |
# first, export gedcom | |
$urls = gc ".....ged" | ? { $_ -match "2 FILE " } | % { $_.Replace("2 FILE ", "") } | |
$urls | % { Start-BitsTransfer $_ } | |
#open in code and replace and strip https parts leaving only filenames by using this regex: | |
# https:\/\/.*[^\/]\/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment