Finds comics.
Find-Comics.ps1 -Title <String[]> [-ReleaseWeek <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Find-Comics.ps1 -Creator <String[]> [-ReleaseWeek <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Find-Comics.ps1 -TitleMatch <Regex> [-ReleaseWeek <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Find-Comics.ps1 -CreatorMatch <Regex> [-ReleaseWeek <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Find-Comics.ps1 [-Condition] <ScriptBlock> [-ReleaseWeek <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Find-Comics.ps1 -Creator 'Grant Morrison','Matt Fraction','David Aja','Kyle Higgins' |Format-Table publisher,title,creators
publisher title creators ——— —– ——– BOOM! STUDIOS KLAUS HC LIFE & TIMES OF SANTA CLAUS (W) Grant Morrison (A/CA) Dan Mora DARK HORSE COMICS SEEDS TP (W) Ann Nocenti (A/CA) David Aja MARVEL COMICS MARVEL-VERSE GN-TP WANDA & VISION (W) Kyle Higgins, More (A) Stephane Perger, More (CA) Daniel Acuna, Jim Cheung
Text to search titles. Comics with titles containing this text will be returned.
Type: String[]
Parameter Sets: Title
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Text to search creators. Comics with creators containing this text will be returned.
Type: String[]
Parameter Sets: Creator
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
A regular exression to match titles. Comics with matching titles will be returned.
Type: Regex
Parameter Sets: TitleMatch
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
A regular expression to search the list of creators for. Comics with a matching list of creators will be returned. The regex will match against a complete list of creators, so anchor with word breaks (\b) rather than the beginning or end of the string (^ or $ or \A or \z).
e.g. (W) Jason Aaron (A/CA) Russell Dauterman
W = writer A = artist CA = color artist
Type: Regex
Parameter Sets: CreatorMatch
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
A filtering script block with the comic as the PSItem ($_) that evaluates to true to return the comic.
Type: ScriptBlock
Parameter Sets: Condition
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies which week (relative to the current week) to return comics for.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: Upcoming
Accept pipeline input: False
Accept wildcard characters: False
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.