Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Merge Text with space into once cell and send email out Post 303041526 by Neo on Tuesday 26th of November 2019 10:13:34 PM
Old 11-26-2019
FYI:

Quote:
The border attribute of <table> is not supported in HTML5. Use CSS instead.
In other words, as I mentioned earlier, the "border" attribute is obsolete.

You should use CSS, not obsolete HTML elements.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies

2. Shell Programming and Scripting

shell script to send email with usage of space in the directory as description :

shell script to send email with usage of space in the directory as description : Please any one help me in writing a script to send email with usage of space in the directory as description . (3 Replies)
Discussion started by: sakthifire
3 Replies

3. UNIX for Dummies Questions & Answers

File need to send to xls as one complete cell

Hi every one, I have a file of ten lines in unix i want to send the file to my mail as .xls and the clause over here is it should send in only one cell .. I am aware of uuencode rest rest.xls | mail -s "testing" mailid But this would send me data into seperate cells (5 Replies)
Discussion started by: rakesh_pagadala
5 Replies

4. Shell Programming and Scripting

Check space of directories and send email if it has reached threshold limit

Hi, I need help in writing unix script for checking space of some directories on the system and also send an email when it reaches the threshold limit. I have written the followng code; #!/bin/ksh ADMIN="me@somewhere.com" # set alert level 80% is default THRESHOLD=80 df | grep -E... (5 Replies)
Discussion started by: jmathew99
5 Replies

5. Shell Programming and Scripting

Script to send email after comparing the folder permissions to a certain permission & send email

Hello , I am trying to write a unix shell script to compare folder permission to say drwxr-x-wx and then send an email to my id in case the folders don't have the drwxr-x-wx permissions set for them . I have been trying to come up with a script for few days now , pls help me:( (2 Replies)
Discussion started by: nairshar
2 Replies

6. UNIX for Dummies Questions & Answers

new to ldap, send email to a ou or group, and see a list from email client

hi, i'm running openldap on ubuntu 10.04, creating new items with apache directory studio (windows version). i use the ldap just as an address book to our small office (email clients are windows live mail 2009, 2011, microsoft outlook 2007 and 2010). a. i cant see a list of the contacts,... (0 Replies)
Discussion started by: V4705
0 Replies

7. Shell Programming and Scripting

How to read specific line of text from a Script and send email notification

Hi ! I am a newbie and never officially wrote a shell script before. The requirement for this script is : 1) Read a file called 'bpm.log' and identify if it has a specific text such as 'this is the text'. Its a static value and that is the only text we need to read. 2) If that... (2 Replies)
Discussion started by: atechcorp
2 Replies

8. UNIX for Dummies Questions & Answers

Need help combining txt files w/ multiple lines into csv single cell - also need data merge

:confused:Hello -- i just joined the forums. I am a complete noob -- only about 1 week into learning how to program anything... and starting with linux. I am working in Linux terminal. I have a folder with a bunch of txt files. Each file has several lines of html code. I want to combine... (2 Replies)
Discussion started by: jetsetter
2 Replies

9. Shell Programming and Scripting

Read a file, add some text and send an email

Hi, If I am asking this question, you must have already figured out , that I am new to Unix, so here it goes I was trying to read a file, add some user defined content to it and send out an email , I did find out a way to achieve this, but looking at the code, it looks a bit crude to me, can... (3 Replies)
Discussion started by: karthikbhuvana
3 Replies

10. Shell Programming and Scripting

Send Disk Space Usage Status via email

Hi Guys, Is there any way I can write a script that sends DISK SPACE USAGE STATUS via email once a week? Thanks, (5 Replies)
Discussion started by: g4v1n
5 Replies
CSS::DOM::Style(3pm)					User Contributed Perl Documentation				      CSS::DOM::Style(3pm)

NAME
CSS::DOM::Style - CSS style declaration class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
use CSS::DOM::Style; $style = CSS::DOM::Style::parse(' text-decoration: none '); $style->cssText; # returns 'text-decoration: none' $style->cssText('color: blue'); # replace contents $style->getPropertyValue('color'); # 'blue' $style->color; # same $style->setProperty(color=>'green'); # change it $style->color('green'); # same DESCRIPTION
This module provides the CSS style declaration class for CSS::DOM. (A style declaration is what comes between the braces in "p { margin: 0 }".) It implements the CSSStyleDeclaration DOM interface. CONSTRUCTORS
CSS::DOM::Style::parse( $string ) CSS::DOM::Style::parse( $string, property_parser => $parser ) This parses the $string and returns a new style declaration object. This is useful if you have text from an HTML "style" attribute, for instance. For details on $property_parser, see CSS::DOM::PropertyParser. new CSS::DOM::Style $owner_rule new CSS::DOM::Style owner => $owner_rule, property_parser => $p You don't normally need to call this, but, in case you do, here it is. $owner_rule, which is optional, is expected to be a CSS::DOM::Rule object, or a subclass like CSS::DOM::Rule::Style. METHODS
cssText ( $new_value ) Returns the body of this style declaration (without the braces). If you pass an argument, it will parsed and replace the existing CSS data. getPropertyValue ( $name ) Returns the value of the named CSS property as a string. getPropertyCSSValue ( $name ) Returns an object representing the property's value. (See CSS::DOM::Value.) removeProperty ( $name ) Removes the named property, returning its value. getPropertyPriority Returns the property's priority. This is usually the empty string or the word 'important'. setProperty ( $name, $value, $priority ) Sets the CSS property named $name, giving it a value of $value and setting the priority to $priority. length Returns the number of properties item ( $index ) Returns the name of the property at the given index. parentRule Returns the rule to which this declaration belongs. modification_handler ( $coderef ) This method, not part of the DOM, allows you to attach a call-back routine that is run whenever a change occurs to the style object (with the style object as its only argument). If you call it without an argument it returns the current handler. With an argument, it returns the old value after setting it. property_parser This returns the parser that was passed to the constructor. This module also has methods for accessing each CSS property directly. Simply capitalise each letter in a CSS property name that follows a hyphen, then remove the hyphens, and you'll have the method name. E.g., call the "borderBottomWidth" method to get/set the border-bottom- width property. One exception to this is that "cssFloat" is the method used to access the 'float' property. (But you can also use the "float" method, though it's not part of the DOM standard.) SEE ALSO
CSS::DOM CSS::DOM::Rule::Style CSS::DOM::PropertyParser HTML::DOM::Element perl v5.10.1 2010-12-10 CSS::DOM::Style(3pm)
All times are GMT -4. The time now is 01:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy