Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Command to get URL under string "SIT" Post 302966331 by rockingvj on Wednesday 10th of February 2016 10:57:52 PM
Old 02-10-2016
Command to get URL under string "SIT"

Hi All,

I have a requirement where I need to get all https URL's under config file SIT. example :

Code:
config environment="SIT"

<URL>https://yahoo.com</URL>

There are 100 files.xml and I need to search every .xml file and get URL's.

I tried with below command , but I'm getting URL's from 20 + folders, but I need from all 100 files.

Code:
find . -name “*.xml” |xargs grep -n “https”


Last edited by Don Cragun; 02-11-2016 at 01:11 AM.. Reason: Add CODE and ICODE tags.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

input string="3MMTQSZ348GGMZRQWMJM4SD6M";output string="3MMTQ-SZ348-GGMZR-QWMJM-4SD6

input string="3MMTQSZ348GGMZRQWMJM4SD6M" output string="3MMTQ-SZ348-GGMZR-QWMJM-4SD6M" using linux shell script (4 Replies)
Discussion started by: pankajd
4 Replies

2. UNIX for Dummies Questions & Answers

Command Character size limit in the "sh" and "bourne" shell

Hi!!.. I would like to know what is maximum character size for a command in the "sh" or "bourne" shell? Thanks in advance.. Roshan. (1 Reply)
Discussion started by: Roshan1286
1 Replies

3. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

4. Shell Programming and Scripting

Using sed to find text between a "string " and character ","

Hello everyone Sorry I have to add another sed question. I am searching a log file and need only the first 2 occurances of text which comes after (note the space) "string " and before a ",". I have tried sed -n 's/.*string \(*\),.*/\1/p' filewith some, but limited success. This gives out all... (10 Replies)
Discussion started by: haggismn
10 Replies

5. Shell Programming and Scripting

how to use "cut" or "awk" or "sed" to remove a string

logs: "/home/abc/public_html/index.php" "/home/abc/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" how to use "cut" or "awk" or "sed" to get the following result: abc abc xyz xyz xyz (8 Replies)
Discussion started by: timmywong
8 Replies

6. Shell Programming and Scripting

tcsh - understanding difference between "echo string" and "echo string > /dev/stdout"

I came across and unexpected behavior with redirections in tcsh. I know, csh is not best for redirections, but I'd like to understand what is happening here. I have following script (called out_to_streams.csh): #!/bin/tcsh -f echo Redirected to STDOUT > /dev/stdout echo Redirected to... (2 Replies)
Discussion started by: marcink
2 Replies

7. Shell Programming and Scripting

grep with "[" and "]" and "dot" within the search string

Hello. Following recommendations for one of my threads, this is working perfectly : #!/bin/bash CNT=$( grep -c -e "some text 1" -e "some text 2" -e "some text 3" "/tmp/log_file.txt" ) Now I need a grep success for some thing like : #!/bin/bash CNT=$( grep -c -e "some text_1... (4 Replies)
Discussion started by: jcdole
4 Replies

8. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

9. Shell Programming and Scripting

How to avoid "Too many arguments" error, when passing a long String literal as input to a command?

Hi, I am using awk here. Inside an awk script, I have a variable which contains a very long XML data in string format (500kb). I want to pass this data (as argument) to curl command using system function. But getting Too many arguments error due to length of string data(payloadBlock). I... (4 Replies)
Discussion started by: cool.aquarian
4 Replies

10. Shell Programming and Scripting

Delete all log files older than 10 day and whose first string of the first line is "MSH" or "<?xml"

Dear Ladies & Gents, I have a requirement to delete all the log files in /var/log/test directory that are older than 10 days and their first line begin with "MSH" or "<?xml" or "FHS". I've put together the following BASH script, but it's erroring out: for filename in $(find /var/log/test... (2 Replies)
Discussion started by: Hiroshi
2 Replies
Template::Plugin::Gravatar(3pm) 			User Contributed Perl Documentation			   Template::Plugin::Gravatar(3pm)

NAME
Template::Plugin::Gravatar - configurable TT2-based generation of Gravatar URLs from email addresses. VERSION
0.05 SYNOPSIS
[% USE Gravatar %] [% FOR user IN user_list %] <img src="[% Gravatar( email => user.email ) | html %]" alt="[% user.name | html %]" /> [% END %] # OR a mini CGI example use strict; use CGI qw( header start_html end_html ); use Template; my %config = ( # ... your other config stuff GRAVATAR => { default => "http://myhost.moo/local/image.png", size => 80, rating => "R" }, ); # note the "default" must be an absolute URI to work correctly my $tt2 = Template->new(\%config); my $user = { email => 'whatever@wherever.whichever', rating => "PG", name => "Manamana", size => 75 }; print header(), start_html(); $tt2->process(*DATA, { user => $user }) or warn $Template::ERROR; print end_html(); __DATA__ [% USE Gravatar %] [% FILTER html %] <img src="[% Gravatar( user ) | html %]" alt="[% user.name | html %]" /> [% END %] DESCRIPTION
Please see <http://site.gravatar.com/site/implement> for more on the service interface and <http://site.gravatar.com/> for information about Gravatars (globally recognized avatars) in general. All of the options supported in Gravatars--default, rating, size, and border--can be used here. The gravatar_id is generated from a given email. INTERFACE
/SETTINGS new Not called directly. Called when you "USE" the plugin. Takes defaults from the template config hash and mixes them with any per template defaults. E.g., [% USE Gravatar %] Use config arguments if any. [% USE Gravatar(default => 'http://mysite.moo/local/default-image.gif') %] Mix config arguments, if any, with new instance arguments. Arguments email (required) The key to using Gravatars is a hex hash of the user's email. This is generated automatically and sent to gravatar.com as the "gravatar_id". default (optional) The local (any valid absolute image URI) image to use if there is no Gravatar corresponding to the given email. size (optional) Gravatars are square. Size is 1 through 80 (pixels) and sets the width and the height. rating (optional) G|PG|R|X. The maximum rating of Gravatar you wish returned. If you have a family friendly forum, for example, you might set it to "G." border (optional) A hex color, e.g. FF00FF or F0F. base (developer override) This is provided as a courtesy for the one or two developers who might need it. More below. gravatar_id (not allowed) This is not an option but a generated variable. It is an MD5 hex hash of the email address. The reason is it not supported as an optional variable is it would allow avatar hijacking. The only argument that must be given when you call the "Gravatar" plugin is the email. Everything else -- rating, default image, border, and size -- can be set in three different places: the config, the "USE" call, or the "Gravatar" call. All three of the following produce the same Gravatar URL. Settings via config Used if the entire "site" should rely on one set of defaults. use Template; my %config = ( GRAVATAR => { default => "http://mysite.moo/img/avatar.png", rating => "PG", size => 80, } ); my $template = <<; [% USE Gravatar %] [% Gravatar(email => 'me@myself.ego') | html %] my $tt2 = Template->new(\%config); $tt2->process($template); Settings via instance Used if a particular template needs its own defaults. use Template; my $template = <<; [% USE Gravatar( rating => "PG", size => 80 ) %] [% Gravatar(email => 'me@myself.ego') | html %] my $tt2 = Template->new(); $tt2->process($template); Any other calls with different emails will share the defaults in this template. Settings in the Gravatar call Used for per URL control. use Template; my $template = <<; [% USE Gravatar %] [% Gravatar(email => 'me@myself.ego', default => "http://mysite.moo/img/avatar.png", rating => "PG", size => 80 ) | html %] my $tt2 = Template->new(); $tt2->process($template); Base URL (for developers only) You may also override the base URL for retrieving the Gravatars. It's set to use the service from www.gravatar.com. It can be overridden in the config or the "USE". DIAGNOSTICS
Email is the only required argument. Croaks without it. Size, border, and rating are also validated on each call. Croaks if an invalid size (like 0 or 100) or rating (like MA or NC-17) or border (like ff0 or FF) is given. CONFIGURATION AND ENVIRONMENT
No configuration is necessary. You may use the configuration hash of your new template to pass default information like the default image location for those without Gravatars. You can also set it in the "USE" call per template if needed. DEPENDENCIES (SEE ALSO) Template, Template::Plugin, Carp, Digest::MD5, and URI::Escape. http://www.gravatar.com/ BUGS AND LIMITATIONS
None known. I certainly appreciate bug reports and feedback via "bug-template-plugin-gravatar@rt.cpan.org", or through the web interface at <http://rt.cpan.org/>. AUTHOR
Ashley Pond V "<ashley@cpan.org>". LICENSE
Copyright 2007, Ashley Pond V. This program is free software; you can redistribute it and modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html. SEE ALSO
Gravatar::URL - standalone Gravatar URL generation. <http://www.gravatar.com> - The Gravatar web site. <http://site.gravatar.com/site/implement> - The Gravatar URL implementation guide. perl v5.12.4 2007-09-09 Template::Plugin::Gravatar(3pm)
All times are GMT -4. The time now is 10:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy