Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

nopaste-it(1) [debian man page]

NOPASTE-IT(1)						      General Commands Manual						     NOPASTE-IT(1)

NAME
nopaste-it - Nopaste software written in Perl (cli tool). SYNOPSIS
nopaste-it DESCRIPTION
This manual page describes briefly the nopaste-it commandline parameters. BINARY PARAMETERS
This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -h, --help Display this help and exit. -v, --version Display version and exit. -u, --url <url> Use a different nopaste URL than http://nopaste.linux-dev.org/. -n, --name Use a different author name than your UNIX username (if it is set). -l, --language <language> Set the given code language. Popular ones are for example: "C", "C++", "Diff", "Perl", "Ruby", etc. You can get the list of sup- ported languages by using the "-s / --list" option of this program. It will be plain unless nothing different is set. Note: This is case sensitive. -e, --expires <expire> Set the expire option. At the moment it only accepts: "1d", "1w" and "never". The default value is "1w". -f, --file <filename> Add the content of the given file to your paste instead of reading from STDIN. -s, --list Gets supported code languages from remote pnopaste and prints them. This option could also be mixed with "url". AUTHOR
This manual page was written by Patrick Matthai <patrick@linux-dev.org> for nopaste-it. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version published by the Free Software Founda- tion NOPASTE-IT(1)

Check Out this Related Man Page

GLOGG(1)						      General Commands Manual							  GLOGG(1)

NAME
glogg -- interactively browses and searches through a file SYNOPSIS
glogg [QT options] [File] DESCRIPTION
This manual page documents briefly the glogg tool. This manual page was written for the Debian distribution because the original program does not have a manual page. For comprehensive docu- mentation, please see /usr/share/doc/glogg/documentation.html. glogg is a GUI application that helps browse and search through long and complex log files. OPTIONS
This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. For a full summary of options, run glogg --help. -h, --help Show summary of options. -v, --version Show version of program. -d, --debug Increase the amount of debug information output by the program. The option can be specified several times to increase the amount further. SEE ALSO
grep (1), less (1). AUTHOR
This manual page was written by Nicolas Bonnefon nicolas@bonnefon.org for the Debian system (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. GLOGG(1)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

separating fields

Hi, i have a file as follows: jonathan:bonus1,bonus2 gerald:bonus1 patrick:bonus1,bonus2 My desired output is jonathan:bonus1 jonathan:bonus2 gerald:bonus1 patrick:bonus1 patrick:bonus2 my current code is cat $F | awk -F"" how should i continue the code? Can i do something... (5 Replies)
Discussion started by: new2ss
5 Replies