Sponsored Content
Full Discussion: awk value return
Top Forums Shell Programming and Scripting awk value return Post 302312941 by Franklin52 on Monday 4th of May 2009 08:06:39 AM
Old 05-04-2009
Don't use a literal "true" or "false" as a return value but a 0 for true and another number for false.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Carriage return on long awk operation

hello all I have long awk function that doing manipulations on text file but when I write the out put to new text file I have carriage return between 2 print commands How can I avoid this ? Here is my awk : echo $f | awk... (1 Reply)
Discussion started by: umen
1 Replies

2. Shell Programming and Scripting

Help: return values from awk

Hi. I have a script like this: nawk 'BEGIN {FS=","; TOT1=0; REJ1=0;} { if($7=="TOTAL") { TOT1=TOT1 +$8} if($7=="REJS") { REJ1=REJ1 +$8} }' FILE_123.dat and... (1 Reply)
Discussion started by: mrodrig
1 Replies

3. Shell Programming and Scripting

Function's return value used inside awk

I have a file with the record of person: cat > $TMP/record.txt John Torres M Single 102353 Address Mark Santos M Maried 103001 Address Carla Maria F Maried 125653 Address #!/bin/ksh ManipulateID(){ ... return 0; ... #or return 1; } cat $TMP/record.txt | awk 'BEGIN {printf... (4 Replies)
Discussion started by: Orbix
4 Replies

4. Shell Programming and Scripting

Return Awk Variable to Shell

I'm a bit stuck in getting variable from awk to shell. I tried searching but most of them showing to assign to shell variable via.. VAR=`echo $line | awk -F: '{print $1}'` which is correct ofcourse My problem is multiple assignments of variable like this one. The above solution will give... (10 Replies)
Discussion started by: ryandegreat25
10 Replies

5. Shell Programming and Scripting

Awk return variable

Hi I have 2 working script, now i'd like to get the return value from the first and give it to the 2 script (both script work correctly if I run it separately). so i think the problem is only the first line in the way i pass the variable. in the final the "print lst", is just to check the... (2 Replies)
Discussion started by: Dedalus
2 Replies

6. UNIX for Dummies Questions & Answers

return a specific row using awk

Hello, I am using awk to process a file, and need to return a row that meets specific criteria. awk 'BEGIN{sets variables} {processes file, updates variables} END{need to print a row that meets the criteria in one of the variables} I have tried code in the END block like {print NR==var}... (1 Reply)
Discussion started by: badPuppy
1 Replies

7. Shell Programming and Scripting

awk return number of entries

I have a string with the following information and want to return the number of entries enclosed by <> in awk <stdin>: N = 441 <0.369000018/0.569000006> <0.369000018/0.569000006> <0/1> (7 Replies)
Discussion started by: kristinu
7 Replies

8. Shell Programming and Scripting

awk - Print column number that return value comes from

I have the following awk script that I am using to find the max value in the file and print results. awk 'BEGIN {MAX=-1E100} {for (x=2; x<=NF; x++) if ($x>MAX) {MAX = $x; C1 = $1}} END {print substr(C1,1,11), substr(C1,13,4), substr(C1,18,2), MAX}' ABC* Input (ABC*) ... (6 Replies)
Discussion started by: ncwxpanther
6 Replies

9. Shell Programming and Scripting

awk command to return only field with a number in it

What is an awk command to print only fields with a number in it?? Input file....... S,S,S,S,S,S,S,S,S 001S,S,S,S,S,S,S,S,S 00219S,23S,24S,43S,47S,S,S,S,S 00319S,10S,23S,41S,43S,47S,S,S,S 00423S,41S,43S,46S,47S,S,S,S,S 00510S,23S,24S,43S,46S,S,S,S,S 00610S,23S,43S,46S,47S,S,S,S,S... (2 Replies)
Discussion started by: garethsays
2 Replies

10. Shell Programming and Scripting

Return path of specific tag using awk

The below awk is used with the attached index.html and matches the specific user id in the sub portion with path of /rundb/api/v1/plugin/49/. The command does run but the output is blank. Something changed in the file structure as it used to work. So using the first line in the output: ... (2 Replies)
Discussion started by: cmccabe
2 Replies
RDF::Trine::Node::Literal(3pm)				User Contributed Perl Documentation			    RDF::Trine::Node::Literal(3pm)

NAME
RDF::Trine::Node::Literal - RDF Node class for literals VERSION
This document describes RDF::Trine::Node::Literal version 1.000 METHODS
Beyond the methods documented below, this class inherits methods from the RDF::Trine::Node class. "new ( $string, $lang, $datatype, $canonical_flag )" Returns a new Literal structure. "literal_value" Returns the string value of the literal. "literal_value_language" Returns the language tag of the ltieral. "literal_datatype" Returns the datatype of the literal. "value" Returns the literal value. "sse" Returns the SSE string for this literal. "as_string" Returns a string representation of the node. "as_ntriples" Returns the node in a string form suitable for NTriples serialization. "type" Returns the type string of this node. "has_language" Returns true if this literal is language-tagged, false otherwise. "has_datatype" Returns true if this literal is datatyped, false otherwise. "equal ( $node )" Returns true if the two nodes are equal, false otherwise. "canonicalize_literal_value ( $string, $datatype, $warn )" If $datatype is a recognized datatype, returns the canonical lexical representation of the value $string. Otherwise returns $string. Currently, xsd:integer, xsd:decimal, and xsd:boolean are canonicalized. Additionally, invalid lexical forms for xsd:float, xsd:double, and xsd:dateTime will trigger a warning. "is_canonical_lexical_form" "is_valid_lexical_form" Returns true if the node is of a recognized datatype and has a valid lexical form for that datatype. If the lexical form is invalid, returns false. If the datatype is unrecognized, returns zero-but-true. "is_numeric_type" Returns true if the literal is a known (xsd) numeric type. "numeric_value" Returns the numeric value of the literal (even if the literal isn't a known numeric type. BUGS
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/kasei/perlrdf/issues>. AUTHOR
Gregory Todd Williams "<gwilliams@cpan.org>" COPYRIGHT
Copyright (c) 2006-2012 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-29 RDF::Trine::Node::Literal(3pm)
All times are GMT -4. The time now is 08:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy