Sponsored Content
Full Discussion: Cut
Top Forums UNIX for Dummies Questions & Answers Cut Post 7732 by kristy on Monday 1st of October 2001 09:40:54 AM
Old 10-01-2001
MySQL

Thanks again. I was thinking the same thing.
 

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Cut Command error cut: Bad range

Hi Can anyone what I am doing wrong while using cut command. for f in *.log do logfilename=$f Log "Log file Name: $logfilename" logfile1=`basename $logfilename .log` flength=${#logfile1} Log "file length $flength" from_length=$(($flength - 15)) Log "from... (2 Replies)
Discussion started by: dgmm
2 Replies

2. UNIX for Beginners Questions & Answers

Cut command: can't make it cut fields

I'm a complete beginner in UNIX (and not a computer science student either), just undergoing a tutoring course. Trying to replicate the instructions on my own I directed output of the ls listing command (lists all files of my home directory ) to My_dir.tsv file (see the screenshot) to make use of... (9 Replies)
Discussion started by: scrutinizerix
9 Replies

3. Shell Programming and Scripting

Using :<<cut / cut to comment out block of bash script

I am using : << cut / cut to comment out block of code. Works fine on few lines of script, then it gives me this cryptic error when I try to comment out about 80 lines. The "warning " is at last line of script. done < results 169 echo "END read all positioning parameters" 170... (8 Replies)
Discussion started by: annacreek
8 Replies
HTML::Tidy::Message(3pm)				User Contributed Perl Documentation				  HTML::Tidy::Message(3pm)

NAME
HTML::Tidy::Message - Message object for the Tidy functionality SYNOPSIS
See HTML::Tidy for all the gory details. EXPORTS
None. It's all object-based. METHODS
Almost everything is an accessor. new( $file, $line, $column, $text ) Create an object. It's not very exciting. where() Returns a formatted string that describes where in the file the error has occurred. For example, (14:23) for line 14, column 23. The terrible thing about this function is that it's both a plain ol' formatting function as in my $str = where( 14, 23 ); AND it's an object method, as in: my $str = $error->where(); I don't know what I was thinking when I set it up this way, but it's bad practice. as_string() Returns a nicely-formatted string for printing out to stdout or some similar user thing. file() Returns the filename of the error, as set by the caller. type() Returns the type of the error. This will either be "TIDY_ERROR", or "TIDY_WARNING". line() Returns the line number of the error, or 0 if there isn't an applicable line number. column() Returns the column number, or 0 if there isn't an applicable column number. text() Returns the text of the message. This does not include a type string, like "Info: ". LICENSE
This code may be distributed under the same terms as Perl itself. Please note that these modules are not products of or supported by the employers of the various contributors to the code. AUTHOR
Andy Lester, "<andy@petdance.com>" perl v5.14.2 2010-02-16 HTML::Tidy::Message(3pm)
All times are GMT -4. The time now is 03:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy