Sponsored Content
Top Forums Shell Programming and Scripting how to use html tag in shell scripting Post 302256894 by jrex1983 on Monday 10th of November 2008 09:39:59 PM
Old 11-10-2008
how to use html tag in shell scripting

Hai friends

I have a small doubt..

how can we use html tag in shell scripting

code :
echo "<html>"
echo "<body>"
echo " welcome to peace world "
echo "</body>"
echo "</html>"

output displayed like this:

<html>
<body>
welcome to peace world
</body>
</html>


but i need output in this format,

" hai ".


i saved the file in .sh format

can any body help me..

thanks

rex
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do I extract text only from html file without HTML tag

I have a html file called myfile. If I simply put "cat myfile.html" in UNIX, it shows all the html tags like <a href=r/26><img src="http://www>. But I want to extract only text part. Same problem happens in "type" command in MS-DOS. I know you can do it by opening it in Internet Explorer,... (4 Replies)
Discussion started by: los111
4 Replies

2. Shell Programming and Scripting

How can i delete html attributes from tag ?

Input: <table class="pixelBorderTable faqTable" width="100%" border="1" cellpadding="3" cellspacing="0"> <tbody><tr> <td class="pixelBorderTableHeaderTd" valign="top" width="20%" bgcolor="#666666"><p>&nbsp;</p></td> <td class="pixelBorderTableHeaderTd" valign="top"... (1 Reply)
Discussion started by: cola
1 Replies

3. Shell Programming and Scripting

Script to delete HTML tag

Guys, I have a little script that I got of the internet and that I use in Squid to block ads. I used that script with linux but now i have moved my servers to freebsd. I have a step learning curve there but it is fun: Back to the script issue. The script used to work i with linux but... (15 Replies)
Discussion started by: zongo
15 Replies

4. Shell Programming and Scripting

Having problem with how to use HTML in Unix shell scripting

Hi All, I'm new to this forum. This is my first question. I'm trying to automate the status related information in our environment. So this is how the output would be. SEGMENT SERVER PORT1 PORT2 PORT3 PORT4 PORT5 ACS acscsa01 up up up up up All... (2 Replies)
Discussion started by: anand.aswini
2 Replies

5. Shell Programming and Scripting

Extracting a string from html tag

Hi I am new to string extractions in shell script... I am trying to extract a string such as #1753 from html tag looks like below. <a class="model-link tl-tr" href="lastSuccessfulBuild/">Last successful build (#1753), 40 min ago</a> and want the value as 1753 Could someone help me to... (3 Replies)
Discussion started by: hicharbo
3 Replies

6. Shell Programming and Scripting

Search for a html tag and print the entire tag

I want to print from <fruits> to </fruits> tag which have <fruit> as mango. Also i want both <fruits> and </fruits> in output. Please help eg. <fruits> <fruit id="111">mango<fruit> . another 20 lines . </fruits> (3 Replies)
Discussion started by: Ashik409
3 Replies

7. Shell Programming and Scripting

Print Value between desired html tag

Hi, I have a html line as below :-... (6 Replies)
Discussion started by: satishmallidi
6 Replies

8. Shell Programming and Scripting

How to remove html tag which has multiple lines in SHELL?

I want to clean a html file. I try to remove the script part in the html and remove the rest of tags and empty lines. The code I try to use is the following: sed '/<script/,/<\/script>/d' webpage.html | sed -e 's/<*>//g' | sed '/^\s*$/d' > output.txt However, in this method, I can not... (10 Replies)
Discussion started by: YuhuiFeng
10 Replies

9. UNIX for Beginners Questions & Answers

Multiline html tag parse shell script

Hello, I want to parse the contents of a multiline html tag ex: <html> <body> <p>some other text</p> <div> <p class="margin-bottom-0"> text1 <br> text2 <br> <br> text3 </p> </div> </body> (15 Replies)
Discussion started by: SorcRR
15 Replies
LOCALE_GET_DISPLAY_VARIANT(3)						 1					     LOCALE_GET_DISPLAY_VARIANT(3)

Locale::getDisplayVariant - Returns an appropriately localized display name for variants of the input locale

	Object oriented style

SYNOPSIS
publicstatic string Locale::getDisplayVariant (string $locale, [string $in_locale]) DESCRIPTION
Procedural style string locale_get_display_variant (string $locale, [string $in_locale]) Returns an appropriately localized display name for variants of the input locale. If is NULL then the default locale is used. PARAMETERS
o $locale - The locale to return a display variant for o $in_locale - Optional format locale to use to display the variant name RETURN VALUES
Display name of the variant for the $locale in the format appropriate for $in_locale. EXAMPLES
Example #1 locale_get_display_variant(3) example <?php echo locale_get_display_variant('sl-Latn-IT-nedis', 'en'); echo "; "; echo locale_get_display_variant('sl-Latn-IT-nedis', 'fr'); echo "; "; echo locale_get_display_variant('sl-Latn-IT-nedis', 'de'); ?> Example #2 OO example <?php echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'en'); echo "; "; echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'fr'); echo "; "; echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'de'); ?> The above example will output: Natisone dialect; dialecte de Natisone; NEDIS SEE ALSO
locale_get_display_name(3), locale_get_display_language(3), locale_get_display_script(3), locale_get_display_region(3). PHP Documentation Group LOCALE_GET_DISPLAY_VARIANT(3)
All times are GMT -4. The time now is 06:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy