Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gnunet-unindex(1) [debian man page]

GNUNET-UNINDEX(1)					      General Commands Manual						 GNUNET-UNINDEX(1)

NAME
gnunet-unindex - a command line interface for deleting indexed files from GNUnet SYNOPSIS
gnunet-unindex [OPTIONS] FILENAME DESCRIPTION
gnunet-unindex is used for deleting indexed files from GNUnet. -c FILENAME, --config=FILENAME use config file (defaults: ~/.gnunet/gnunet.conf) -h, --help print help page -L LOGLEVEL, --loglevel=LOGLEVEL Change the loglevel. Possible values for LOGLEVEL are NOTHING, ERROR, WARNING, INFO and DEBUG. -v, --version print the version number -V, --verbose be verbose NOTES
You can only unindex files that you indexed and that you still have available locally in full. You should use gnunet-unindex on files that you indexed (not inserted) and that you are going to delete or move locally. FILES ~/.gnunet/gnunet.conf GNUnet configuration file REPORTING BUGS
Report bugs to <https://gnunet.org/bugs/> or by sending electronic mail to <gnunet-developers@gnu.org> SEE ALSO
gnunet-fs-gtk(1), gnunet-publish(1), gnunet-search(1), gnunet-download(1), gnunet.conf(5) GNUnet 6 Sep 2009 GNUNET-UNINDEX(1)

Check Out this Related Man Page

GNUNET-STATISTICS(1)					      General Commands Manual					      GNUNET-STATISTICS(1)

NAME
gnunet-statistics - Display statistics about your GNUnet system SYNOPSIS
gnunet-statistics [options] [VALUE] DESCRIPTION
gnunet-statistics is used to display detailed information about various aspect of GNUnet's operation. This tool only works if the "statis- tics" service is available. gnunet-statistics can be used to set a value by giving the options -n, -s and also a VALUE. OPTIONS
-c FILENAME, --config=FILENAME Use the configuration file FILENAME. -h, --help Print short help on options. -L LOGLEVEL, --loglevel=LOGLEVEL Use LOGLEVEL for logging. Valid values are DEBUG, INFO, WARNING and ERROR. -n NAME, --name=NAME Each statistic has a name that is unique with in its subsystem. With this option, the output can be restricted to statistics that have a particular name. -p, --persistent When setting a value, make the value persistent. If the value used to be persistent and this flag is not given, it will be marked as non-persistent. -s SUBSYSTEM, --subsystem=SUBSYSTEM Statistics are kept for various subsystems. With this option, the output can be restricted to a particular subsystem only. -v, --version Print GNUnet version number. BUGS
Report bugs by using Mantis <https://gnunet.org/mantis/> or by sending electronic mail to <gnunet-developers@gnu.org> SEE ALSO
gnunet-service-statistics(1) GNUnet Jan 4, 2012 GNUNET-STATISTICS(1)
Man Page

12 More Discussions You Might Find Interesting

1. Programming

indexed sequential access in c files

hi, I want to implement indexed sequential access method in my flat file, Any idea other than INFORMIX C-ISAM library, because it is not free ware, Any Freeware available? (0 Replies)
Discussion started by: vrkiruba
0 Replies

2. Shell Programming and Scripting

awk -F -f

linux redhat 8.0 if I have a file with a list of file names and want to apply the awk -F -f/ FILENAME / file file how can apply all the names of the files in FILENAME "/ /" simultaneously.. too frustrating! :rolleyes: please help me with this little nut cracker! would appreciate!:confused: (0 Replies)
Discussion started by: moxxx68
0 Replies

3. Shell Programming and Scripting

grep Question

I have a file which loads procedure/function into ORACLE.Top of the file contains 3 rows which is FILENAME, FILETYPE AND COMMENTS and then the function/procedure etc. FILENAME: FILETYPE: COMMENTS: <Function/Procedure etc> The Filename,FILETYPE, COMMENTS will be entered by the dba which... (10 Replies)
Discussion started by: yerra
10 Replies

4. Shell Programming and Scripting

move files using wildcard

I have the following requirement. PATHA =/opr/itr/ PATHB=/etc/data/ FILENAME=*abc* file name is wild carded as there could be many files with name abc anywhere I tried mv $PATHA/$FILENAME $PATHB and I got a error that /etc/data/ can not be created Could any one please help. ... (1 Reply)
Discussion started by: onlyjayaram
1 Replies

5. Shell Programming and Scripting

Is there an efficient way in finding and deleting files?

Hi I have a script to find and delete the files which are say, noDaysOld, I am interested to find the number of such files I am fniding for deleting and then deleting it. So, the script I wrote, first finds the number of such files and then deletes, clearly this is two different steps. ... (3 Replies)
Discussion started by: guruparan18
3 Replies

6. UNIX for Advanced & Expert Users

Deleting First 10 letters in a line

Hi, Could any one of you let me know any simple Unix command for deleting first 10 letters of first line in unix? Eg: 123456789ABC --Input ABC--Output Thanks Sue (9 Replies)
Discussion started by: pyaranoid
9 Replies

7. UNIX for Dummies Questions & Answers

Need help with deleting certain characters on a line

I have a file that looks like this: It is a huge file and basically I want to delete everything at the > line except for the number after “C”. >c1154... (2 Replies)
Discussion started by: kylle345
2 Replies

8. Shell Programming and Scripting

A silly question

FILENAME is a variable. Is there really any difference between "$FILENAME.sh" and "$FILENAME".sh ? (5 Replies)
Discussion started by: proactiveaditya
5 Replies

9. Shell Programming and Scripting

How to extract data from indexed files (ISAM files) maintained in an unix server.

Hi, Could someone please assist on a quick way of How to extract data from indexed files (ISAM files) maintained in an UNIX(AIX) server.The file data needs to be extracted in flat text file or CSV or excel format . Usually we have programs in microfocus COBOL to extract data, but would like... (2 Replies)
Discussion started by: devina
2 Replies

10. Shell Programming and Scripting

Confirmation while deleting a file

Hi All, While am deleting a file in unix by using the command rm it's deleting the file directly IT's have to ask the user while deleting like do you want to delete filename y or N ? Kindly help on this. Thanks Thelak (2 Replies)
Discussion started by: thelakbe
2 Replies

11. Shell Programming and Scripting

Comparison of fields in Files

Hello, I have two files with tab delimited data. The file will contain details something like below: FILENAME.A.B.C. 3 5 VALID PROCESSED I would have a bench mark file. I would be getting new files of the same format. My requirement is to compare a particular field for a... (3 Replies)
Discussion started by: Praveenkulkarni
3 Replies

12. Shell Programming and Scripting

How do I include the file being compared into calculation?

nawk -F, 'NR==FNR{file=FILENAME;a++;next} a{if(FILENAME~file)next;b++;} END{ for(i in a){if(a && !b){print "NEW: "i}} for(i in b){if(b)print i"\t\t"b}}' OFS=, 123.csv *.csv I need to include 123.csv into the equation for the total output currently it compares whatever is on 123.csv against... (27 Replies)
Discussion started by: llcooljatt
27 Replies