Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sup-tweak-labels(1) [debian man page]

SUP-TWEAK-LABELS(1)					      General Commands Manual					       SUP-TWEAK-LABELS(1)

NAME
sup-tweak-labels - batch modification of message state already in index SYNOPSIS
sup-tweak-labels [options] source ... DESCRIPTION
Batch modification of message state for messages already in the index. Supported source URI schemes can be seen by running "sup-add --help". OPTIONS
--add, -a labels One or more labels (comma-separated) to add to every message from the specified sources (default: ) --remove, -r labels One or more labels (comma-separated) to remove from every message from the specified sources, if those labels are present (default: ) --query, -q query A Sup search query OTHER OPTIONS
--verbose, -v Print message ids as they're processed --very-verbose, -e Print message names and subjects as they're processed --all-sources Scan over all sources --dry-run, -n Don't actually modify the index. Probably only useful with --verbose --version Show version information --help, -h Show help message SEE ALSO
sup-mail(1), sup-add(1) AUTHOR
Sup was written by William Morgan <wmorgan-sup@masanjin.net>. This manual page was written by Per Andersson <avtobiff@gmail.com> for the Debian project (but may be used by others). April 9, 2012 SUP-TWEAK-LABELS(1)

Check Out this Related Man Page

SUP-RECOVER-SOURCES(1)					      General Commands Manual					    SUP-RECOVER-SOURCES(1)

NAME
sup-recover-sources - rebuild a lost Sup source configuration file SYNOPSIS
sup-recover-sources [options] [source uri...] DESCRIPTION
Rebuilds a lost sources.yaml file by reading messages from a list of sources and determining, for each source, the most prevalent 'source_id' field of messages from that source in the index. The only non-deterministic component to this is that if the same message appears in multiple sources, those sources may be mis-diagnosed by this program. If the first N messages (--scan-num below) all have the same source_id in the index, the source will be added to sources.yaml. Otherwise, the distribution will be printed, and you will have to add it by hand. The offset pointer into the sources will be set to the end of the source, so you will have to run sup-import --rebuild for each new source after doing this. OPTIONS
--unusual Mark sources as 'unusual'. Only usual sources will be polled by hand (default: false) --archive Mark sources as 'archive'. New messages from these sources will not appear in the inbox (default: false) --scan-num N Number of messages to scan per source (default: 10) -h, --help Show help message FILES
$HOME/.sup/sources.yaml Configuration file for Sup mail sources SEE ALSO
sup-mail(1), sup-config(1), sup-add(1), sup-import(1) AUTHOR
Sup was written by William Morgan <wmorgan-sup@masanjin.net>. This manual page was written by Per Andersson <avtobiff@gmail.com> for the Debian project (but may be used by others). April 9, 2012 SUP-RECOVER-SOURCES(1)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

add comma

I have a file like this 101223345 23232344a 1312a3441 903821224 143434324 101223345 23232344a 1312a3441 I want to insert comma in 5 digit. it should be like 10122,3345 23232,344a how can I do this ? thanks Alice... (3 Replies)
Discussion started by: alisevA3
3 Replies

2. UNIX for Dummies Questions & Answers

formatting a file headache

Hello does anyone know how to do the following using some simple unix if possible: I have a file with the following info as comma separated. It shows username, id number and all the subjects they are enrolled in on the one line. The subjects are separated by colons. UserName,ID,Subject... (13 Replies)
Discussion started by: ynneycat
13 Replies

3. Shell Programming and Scripting

sed formatting query

had asked this earlier , but now with some small modification. i wish to remove "#" characters and replace them with a single # character. how to do that? . like # should be appended in all lines ex if the file is like ####aasd ##pqr #qwert poppy output shud be #aasd #pqr #qwert... (2 Replies)
Discussion started by: gopsman
2 Replies

4. UNIX Desktop Questions & Answers

Terminal title bar tweak discrepancy problem in Cygwin/X

Code for the tweak (not my fave 'running process' but the more popular 'working directory') : case "$TERM" in xterm*|rxvt*|rxvt-unicode*) PROMPT_COMMAND='echo -e "\033]0;$TERM: ${PWD}\007"' ;; *) ;; esac Where it works: rxvt (the one I run 'rootless' outside of ... (0 Replies)
Discussion started by: SilversleevesX
0 Replies

5. UNIX for Dummies Questions & Answers

How to remove comma from the last line of the file

Hi, I have a file which has records which end with a comma. for example: My file looks like 1234, 5678, 3455, 3566, 4444, 9999, I need to remove comma for the last line in the file so that my file should look like: 1234, 5678, 3455, (5 Replies)
Discussion started by: sandeep_1105
5 Replies

6. Shell Programming and Scripting

Extract specific content from data and rename its header problem asking

Input file 1: >pattern_5 GAATTCGTTCATGTAGGTTGASDASFGDSGRTYRYGHDGSDFGSDGGDSGSDGSDFGSDF ATTTAATTATGATTCATACGTCATATGTTATTATTCAATCGTATAAAATTATGTGACCTT SDFSDGSDFKSDAFLKJASLFJASKLFSJAKJFHASJKFHASJKFHASJKFHSJAKFHAW >pattern_1 AAGTCTTAAGATATCACCGTCGATTAGGTTTATACAGCTTTTGTGTTATTTAAATTTGAC... (10 Replies)
Discussion started by: patrick87
10 Replies

7. UNIX for Dummies Questions & Answers

How to add comma after every value in a array

Hi all Requirement: I need to generate a comma seperated file(.csv) I have one functions which returns me some values in a array. Now i want to add comma after every value that gets stored in the array. E.g: arr=$var1"," Expected: arr=abc, arr=def, . . likewise thanks in advance... (4 Replies)
Discussion started by: Ganesh_more
4 Replies

8. Shell Programming and Scripting

Putting together substrings if pattern is matched

What I would like to do is if the lines with % have the same name, then combine the last 9 letters of the string underneath the last occurrence of that ID with the first 9 letters of the string underneath the first occurrence of that ID. I have a file that looks like this: %GOGG... (12 Replies)
Discussion started by: verse123
12 Replies

9. UNIX for Beginners Questions & Answers

DB2 Query modification to remove duplicate values using LISTAGG function

I am using DB2 v9 and trying to get country values in comma seperated format using below query SELECT distinct LISTAGG(COUNTRIES, ',') WITHIN GROUP(ORDER BY EMPLOYEE) FROM LOCATION ; Output Achieved MEXICO,UNITED STATES,INDIA,JAPAN,UNITED KINGDOM,MEXICO,UNITED STATES The table... (4 Replies)
Discussion started by: Perlbaby
4 Replies