bridge_remove_pattern

bridge_remove_pattern — deletes all bridges that match a pattern.

Syntax

(bridge_remove_pattern source_pattern destination_pattern)
    

Arguments

source_pattern

A string containing a pattern for the name of the source points of the bridge, such as "domain1:*".

destination_pattern

A string containing a pattern for the name of the destination points of the bridge, such as "*:*".

Returns

A message indicating success or error. Please refer to Return Syntax for details.

Description

This command permanently deletes all bridges that match a specified pattern. The available patterns are as follows:

    matches any number of characters, including zero.

    [cmatches a single character which is a member of the set contained within the square brackets.

    [^cmatches any single character which is not a member of the set contained within the square brackets.

    matches a single character.

    {xx,yymatches either of the simple strings contained within the braces.

    \c (a backslash followed by a character) - matches that character.