Sponsored Content
Top Forums Shell Programming and Scripting How to avoid preceding whitespace using getopts? Post 303037104 by knowyrtech on Tuesday 23rd of July 2019 10:19:51 AM
Old 07-23-2019
What if the incoming request to the test script is from a tool call Jenkins and the parameters could be multiline strings or comma separated which enforces us to have quotes around each argument. Any suggestions on such a case?
 

10 More Discussions You Might Find Interesting

1. Programming

Error: No direct declarator preceding "("

Hi, while compiling my c++ program, I get the following Message: /usr/include/iso/math_iso.h", line 84: Error: No direct declarator preceding "(" Does anybody know this? Thanks Nik (1 Reply)
Discussion started by: nik
1 Replies

2. Shell Programming and Scripting

Finding word in file then print the preceding....

Hi, I am looking for a way to find a particular word in a file then print a line that precedes this line, as well as this line. Sometimes in a log file there is only one word per line and I need to print one of the lines leading up to the single worded line. Example - I can grep for ouch... (5 Replies)
Discussion started by: g_jumpin
5 Replies

3. Shell Programming and Scripting

Log File - Getting Info about preceding Date of Pattern Found

Ok Suppose I have a log file like the below: 2010-07-15 00:00:01,410 DEBUG 2010-07-15 00:01:01,410 DEBUG 2010-07-15 00:01:02,410 DEBUG com.af ajfajfaf affafadfadfd dfa fdfadfdfadfadf fafafdfadfdafadfdaffdaffadf afdfdafdfdafafd error error failure afdfadfdfdfdf EBUDGG eafaferror failure... (6 Replies)
Discussion started by: SkySmart
6 Replies

4. Shell Programming and Scripting

How to match (whitespace digits whitespace) sequence?

Hi Following is an example line. echo "192.22.22.22 \"33dffwef\" 200 300 dsdsd" | sed "s:\(\ *\ \):\1:" I want it's output to be 200 However this is not the case. Can you tell me how to do it? I don't want to use AWK for this. Secondly, how can i fetch just 300? Should I use "\2"... (3 Replies)
Discussion started by: shahanali
3 Replies

5. Shell Programming and Scripting

Find Node and replace line(s) preceding in xml file

Hello, I have an xml file whose contacts are like below: <Node>Apple <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Mango <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Apple <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Bannana (3 Replies)
Discussion started by: umarsatti
3 Replies

6. Shell Programming and Scripting

awk to transpose preceding row to 1st column of next rows

Gurus: How can I transpose the output below to a format in which I can plot a graph to show VSZ memory usage by PIDs? stdout: Tue Jan 22 07:29:19 CUT 2013 42336296 1841272 java wilyadm 21889232 438616 jlaunch sidadm 42532994 414336 jlaunch sidadm Tue Jan 22 07:49:20 CUT 2013... (1 Reply)
Discussion started by: ux4me
1 Replies

7. Shell Programming and Scripting

Find the closest value in another csv file preceding it and following it?

Hi, Is this possible? I want to take a csv file and find the closest value in another csv file preceding it and following it. For ex. In this csv file, I'll take the first line: 1309341156.800000000 1309341156.802500000 1309341156.805000000 1309341156.807500000 and find the closest... (2 Replies)
Discussion started by: superbbrr
2 Replies

8. Linux

Print each ; separated value, in front of the value preceding them

I have a file that looks like this, P38112 Q12389; Q03532; P43586; Q08208; P37838; P40693; P38805 Q12389 P32892; P36049; Q03532; P43586; Q12176; P38112; P39744; P37838 P11154 P39940 P50094 P50095 P32892 Q12389; Q04660; P43586; P37838; P40693 Q05022 Q08235; Q12176; P39744 P40347 P32333... (2 Replies)
Discussion started by: Syeda Sumayya
2 Replies

9. Shell Programming and Scripting

Print next line beside preceding line on column match

Hi, I have some data like below: John 254 Chris 254 Matt 123 Abe 123 Raj 487 Moh 487 How can i print it using awk to have: 254 John,Chris 123 Matt,Abe 487 Raj,Moh Thanks. (4 Replies)
Discussion started by: james2009
4 Replies

10. Shell Programming and Scripting

Extract whole word preceding a specific character pattern with first occurence of the pattern

Hello. Here is a file contents : declare -Ax NEW_FORCE_IGNORE_ARRAY=(="§" ="§" ="§" ="§" ="§" .................. ="§"Here is a pattern =I want to extract 'NEW_FORCE_IGNORE_ARRAY' which is the whole word before the first occurrence of pattern '=' Is there a better solution than mine :... (3 Replies)
Discussion started by: jcdole
3 Replies
dput.cf(5)							File Formats Manual							dput.cf(5)

NAME
       dput.cf - Debian package upload tool configuration file

DESCRIPTION
       This manpage gives a brief overview of dput's configuration file and the available options in it.  dput is a tool to upload Debian packages
       to the archive.

FORMAT
       dput.cf consists of different groups of configuration options, one for each host where you want to be able to upload  packages.	Hosts  are
       defined	using  an  identifier header with a short name for the host, enclosed in square brackets.  Note that only if multiple such headers
       are encountered in the configuration, only the group following the last header is considered. This is done to avoid confusion when overrid-
       ing  a global configuration file with a user-specific one.  There's a special identifier, [DEFAULT], which holds default parameters for all
       the hosts. The defaults can be overridden by redefining them again in each host section. The available parameters are listed below:

       fqdn   This is the fully qualified domain name that will be used (can be specified as host:port for HTTP, HTTPS and FTP).

       login  Your login on the machine named before. A single asterisk * will cause the scp and rsync uploaders to not use supply  a  login  name
	      when calling to ssh, scp, and rsync.

       incoming
	      The directory that you should upload the files to.

       method The method that you want to use for uploading the files.	Currently, dput accepts the following values for method:

	      ftp    the  package  will  be  uploaded  via  ftp, either anonymously or using a login/password. Note that ftp is unencrypted so you
		     should not use password authentication with this.

	      http and https
		     the package will be uploaded via http or https using the PUT method as specified in WebDAV. The upload method will prompt for
		     a password if necessary.

	      scp    the  package  will  be  uploaded using ssh's scp. This transfers files using a secure ssh tunnel, and needs an account on the
		     upload machine.

	      rsync  the package will be uploaded using rsync over ssh. This is similar to scp, but can save some  bandwidth  if  the  destination
		     file already exists on the upload server. It also needs a login on the remote machine as it uses ssh.

	      local  the package will be "uploaded" locally using /usr/bin/install.  This transfers files to a local incoming directory, and needs
		     appropriate permissions set on that directory.

       hash   The hash algorithm that should be used in calculating the checksum of the files before uploading them. Currently, dput  accepts  the
	      following values for hash:

	      md5    use the md5 algorithm for calculation

	      sha    use the sha algorithm for calculation

       allow_unsigned_uploads
	      This defines if you are allowed to upload files without a GnuPG signature to this host or not.

       allow_dcut
	      This defines if you are allowed to upload a dcut changes file to the queue to remove or move files.

       distributions
	      This defines a comma-separated list of distributions that this host accepts, used to guess the host to use when none is given on the
	      command line.

       allowed_distributions
	      A regular expression (of Python re module syntax) that the distribution field must match or dput will refuse the upload.

       delayed
	      Set a numeric default parameter for delayed uploads (i.e. uploads to this queue will  be	delayed  the  specified  number  of  days.
	      Defaults to the empty string, meaning no delay. This only works with upload queues that support delayed uploads.

       run_lintian
	      This  option  defines  if lintian should be run before the package will be uploaded or not. If the package is not lintian clean, the
	      upload will not happen.

       run_dinstall
	      This options defines if dinstall -n should be run after the package has been uploaded or not. This is an easy way to  test  if  your
	      package would be installed into the archive or not.

       check_version
	      This  option  defines if dput should check if the user has installed the package in his system for testing it before putting it into
	      the archive. If the user has not installed and tested it, dput will reject the upload.

       passive_ftp
	      This option defines if dput should use passive ftp or active ftp for uploading a package to one of the upload  queues.  By  default,
	      dput uses passive ftp connections. If you need to use active ftp connections, set passive_ftp to 0.

       progress_indicator
	      This integer option defines if dput should display a progress indicator for the upload. (Currently implemented in ftp only.)
	      Supported values: 0 (default) - no progress, 1 - rotating progress indicator, and 2 - kilobyte counter.

       scp_compress
	      This option defines if the scp upload to the host will be compressed, or not.  This option is only used for the 'scp' upload method,
	      and has been found to decrease upload time for slow links, and increase upload times for faster links.

       ssh_config_options
	      The arguments of this config options should be ssh config file options in the style documented in ssh_config(5). They will be passed
	      to  all  automatic  invocations of ssh and scp by dput. Note that you can define multiline (dput) configuration options by indenting
	      the second line with whitespace (i.e. similar to RFC822 header continuations).

       post_upload_command
	      This option defines a command to be run by dput after a successful upload.

       pre_upload_command
	      This option defines a command to be run by dput before a upload happens.

       default_host_main
	      This defines the default host for packages that are allowed to be uploaded to the main archive. This variable is used when  guessing
	      the host to upload to.

BUGS
       Please send bug reports to the author.

FILES
       /etc/dput.cf
	      global dput configuration file

       ~/.dput.cf
	      peruser dput configuration file

AUTHOR
       Christian Kurz. Updated by Thomas Viehmann <tv@beamnet.de>.

       Many other people have contributed to this code. See the Thanks file.

SEE ALSO
       dput(1)
       /usr/share/doc/dput

COMMENTS
       The author appreciates comments and suggestions from you, if any.

								   April 8, 2001							dput.cf(5)
All times are GMT -4. The time now is 06:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy