Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

find_member(8) [debian man page]

FIND_MEMBER(8)						      System Manager's Manual						    FIND_MEMBER(8)

NAME
find_member - Find all Mailman mailing lists that a member's address is on SYNOPSIS
find_member [options] regex [regex [...]] OPTIONS
-l listname, --listname=listname Include only the named list in the search. -x listname, --exclude=listname Exclude the named list from the search. -w, --owners Search list owners as well as members. -o file, --output=file Append the alias setting recommendations to file, in addition to printing them to standard output. -h, --help Print a small help text and exit regex A Python regular expression to match against. NOTES
The interaction between -l and -x is as follows. If any -l option is given then only the named list will be included in the search. If any -x option is given but no -l option is given, then all lists will be search except those specifically excluded. Regular expression syntax is Perl5-like, using the Python re module. Complete specifications are at: http://www.python.org/doc/current/lib/module-re.html Address matches are case-insensitive, but case-preserved addresses are displayed. AUTHOR
Author of Mailman is the Mailman Cabal, see http://www.list.org/ for information. This manpage is written by Tollef Fog Heen <tfheen@debian.org> for Debian but may be used by others. SEE ALSO
Mailman documentation on http://www.list.org/ and in /usr/share/doc/mailman. 2001-03-10 FIND_MEMBER(8)

Check Out this Related Man Page

CLONE_MEMBER(8) 					      System Manager's Manual						   CLONE_MEMBER(8)

NAME
clone_member - Clone a Mailman mailing list subscriber address SYNOPSIS
clone_member [options] fromoldaddr tonewaddr DESCRIPTION
Cloning a member address means that a new member will be added who has all the same options and passwords as the original member address. Note that this operation is fairly trusting of the user who runs it -- it does no verification to the new address, it does not send out a welcome message, etc. The existing member's subscription is usually not modified in any way. If you want to remove the old address, use the -r flag. If you also want to change any list admin addresses, use the -a flag. OPTIONS
-l listname, --listname=listname Check and modify only the named mailing lists. If -l is not given, then all mailing lists are scanned from the address. Multiple -l options can be supplied. -r, --remove Remove the old address from the mailing list after it's been cloned. -a, --admin Scan the list admin addresses for the old address, and clone or change them too. -q, --quiet Do the modifications quietly. -n, --nomodify Print what would be done, but don't actually do it. Inhibits the 0 fromoldaddr (`from old address') is the old address of the user. tonewaddr (`to new address') is the new address of the user. AUTHOR
Author of Mailman is the Mailman Cabal, see http://www.list.org/ for information. This manpage is written by Tollef Fog Heen <tfheen@debian.org> for Debian, but may be used by others. SEE ALSO
Mailman documentation on http://www.list.org/ and in /usr/share/doc/mailman. 2007-07-14 CLONE_MEMBER(8)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find regex

Hi There, Can anybody help me out for searching this regular expression? xxxxx.yyy.zzzz.From-ABCD.To-XYZ.xxxxxx I would like the ID1 and ID2 (knowing which one is Id1 and id2) .From-<ID1>. and .To-<ID2>. Thanks in advance!! Regards, Bhaskar (4 Replies)
Discussion started by: bhaskar_m
4 Replies

2. Shell Programming and Scripting

How do I search with regex in one spot?

Hello im new here and i shot stright with question. Mainly i wanna ask , how do i search with regexp in one spot and show the whole thing, what im trying to ask is , for eg. i do ls -l, and i see all the info for the dirs and dats. now say i wanna get all the dats that in their name they start... (2 Replies)
Discussion started by: Goroner
2 Replies

3. UNIX for Dummies Questions & Answers

more command case insensitive search ?

Hello, How do I set case insensitive search mode while the file is open with more command ? (I know -i option which could be used before opening) thanks Vilius (2 Replies)
Discussion started by: vilius
2 Replies

4. Shell Programming and Scripting

Regular Expression in Find command [KSH]

Hello, I am trying to use regex wtih find command in KSH. For some reason it is not working as expected. Input: comm_000_abc_0102.c comm_000_abc.c 456_000_abc_1212.cpp 456_000_abc_.cpp Expected Output: comm_000_abc_0102.c kkm_000_abc_8888.cpp (Basically I want to find all... (6 Replies)
Discussion started by: vinay4889
6 Replies

5. Programming

Python Script Issues

Gents, This is a follow up to my previous post: https://www.unix.com/shell-programming-scripting/217521-python-newbie-question-regex.html Here the latest function that I am having issues with: def find_all_flvs(url): soup = BeautifulSoup(urllib2.urlopen(url)) flvs = for... (2 Replies)
Discussion started by: metallica1973
2 Replies

6. Programming

Python Reading Individual files and Regex through them

As a newbie to Python, I am trying to write a script in which is will add all the log files (*.log) from within a directory to a list, open the files and search for an ip using a regex and single it out (appending the ip's to the list). So far, I have: import re, os def list_files() content = ... (4 Replies)
Discussion started by: metallica1973
4 Replies