Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

netsds::util::struct(3pm) [debian man page]

NetSDS::Util::Struct(3pm)				User Contributed Perl Documentation				 NetSDS::Util::Struct(3pm)

NAME
NetSDS::Util::Struct - data structure convertors SYNOPSIS
use NetSDS::Util::Struct; ... my $str = dump_to_row($some_structure); DESCRIPTION
NetSDS::Util::Struct module contains different utilities for data structures processing. EXPORTED METHODS
dump_to_string(...) Returns cleaned dump to scalar. dump_to_row(...) Returns cleaned dump to scalar. to_array($data) arrays_to_hash($keys_ref, $values_ref) - translate arrays to hash Parameters: references to keys array and values array Return: hash If @$keys_ref is longer than @$values_ref - rest of keys filled with "undef" values. If @$keys_ref is shorter than @$values_ref - rest of values are discarded. If any of parameters isn't array reference then "undef" will return. Example: my %h = array2hash(['fruit','animal'], ['apple','horse']); Result should be a hash: ( fruit => 'apple', animal => 'horse' ) merge_hash($target, $source) - merge two hashes Parameters: references to target and source hashes. This method adds source hash to target one and return value as a result. EXAMPLES
None BUGS
Unknown yet TODO
None SEE ALSO
None AUTHORS
Valentyn Solomko <pere@pere.org.ua> perl v5.12.4 2011-08-27 NetSDS::Util::Struct(3pm)

Check Out this Related Man Page

NetSDS::Util::DateTime(3pm)				User Contributed Perl Documentation			       NetSDS::Util::DateTime(3pm)

NAME
NetSDS::Util::DateTime - common date/time processing routines SYNOPSIS
use NetSDS::Util::DateTime; print "Current date: " . date_now(); DESCRIPTION
This package provides set of routines for date and time processing. EXPORTED FUNCTIONS
date_now_array([TIME]) Returns array of date items for given date. If source date is not set current date used. date_now([TIME]) Return [given] date as string. 2001-12-23 14:39:53 date_now_iso8601([TIME]) Return date as ISO 8601 string. 20011223T14:39:53Z <http://en.wikipedia.org/wiki/ISO_8601> http://www.w3.org/TR/NOTE-datetime <http://www.w3.org/TR/NOTE-datetime> date_strip(DATE) Trim miliseconds from date. date_date(DATE) Trim time part from date. date_time(DATE) Trim date part from date. time_from_string($string) Return parsed date/time structure. date_from_string($string) Return date from string representation. date_inc([INCREMENT, [TIME]]) Return date incremented with given number of seconds. date_inc_string([INCREMENT, [TIME]]) Return string representation of date incremented with given number of seconds. EXAMPLES
None yet BUGS
Unknown yet SEE ALSO
Date::Parse, Date::Format TODO
Import stuff from Wono project AUTHOR
Valentyn Solomko <val@pere.org.ua> Michael Bochkaryov <misha@rattler.kiev.ua> perl v5.12.4 2011-08-27 NetSDS::Util::DateTime(3pm)
Man Page

11 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

display and output...question

Hi, I have a small question about the value cannot display correctly: MSG=log fruit=apple print "No $fruit in the store" > "$MSG/fruit_message.txt" output: No $fruit in the store should be: No apple in the store AND $MSG/fruit_message.txt ----------> cannot find the... (5 Replies)
Discussion started by: happyv
5 Replies

2. Shell Programming and Scripting

Scripting problem: Output

#!/bin/ksh animal="horse" animal="Unicorn" animal="Tiger" animal="Camel" print print "$animal" print "$animal" integer marks_score marks_score=99 marks_score=94 marks_score=96 print -n "enter the score on the final exam:" read marks_scores marks_scores=77 In the above script, this... (2 Replies)
Discussion started by: mraghunandanan
2 Replies

3. Shell Programming and Scripting

Script to check a file and replace some of the contents

Hi I have a file that looks like this: Line 0 animal elephant Line 1 animal elephant Line 2 animal elephant Line 3 animal elephant What i am aiming to do is with a script and an input value of... (6 Replies)
Discussion started by: tara
6 Replies

4. Shell Programming and Scripting

Perl hash containing arrays

Hi, I am not that good at Perl. But here's what I wanna do. I want to create a hash where the keys would point to different arrays. This is what I have tried to do but in vain :( @arr=(1,2,3); @arr1=(3,2,1); %hashOfLists=(); $hashOfLists{Key1}=@arr."\n"; $hashOfLists{Key2}=@arr1."\n";... (3 Replies)
Discussion started by: King Nothing
3 Replies

5. Programming

Understanding perl code

What is the difference between the two statements below? A: $a->{"$fruit"}->{"$color"}->{size} = $size B: $size = $a->{"$fruit"}->{"$color"}->{size} Please assist. Thanks! (0 Replies)
Discussion started by: onlinelearner02
0 Replies

6. Shell Programming and Scripting

Compare 2 files which are not look alike

Hi, I have 2 files as seen below. File 1: apple#fruit carrot#vege orange#fruitFile 2: #list of fruits fruitlist : apple#fruit grape#fruit orange#fruit finish (3 Replies)
Discussion started by: jayadanabalan
3 Replies

7. Shell Programming and Scripting

Perl : Assigning multile hash values to a single array

I know that @food = %fruit; Works. But how do I assign %fruit and %veggies to @food ? (2 Replies)
Discussion started by: popeye
2 Replies

8. Shell Programming and Scripting

Filtering out the data with dates

Hi, I have some data like seen below. format : apple(hhmm mm/dd).fruit apple(2345 03/25).fruit apple(2345 05/06).fruit orange(0443 05/02).fruit orange(0345 05/05).fruit orange(2134 05/04).fruit grape(0930 04/24).fruit grape(2330 03/30).fruit I need to get the data which are... (1 Reply)
Discussion started by: jayadanabalan
1 Replies

9. Programming

Struct as return type

Hello all, I am trying to define a function with return type as struct, but seem to be failing. Error I am receiving is following .CC error: prototype for 'RpcHOData L1ITMu::MBLTCollection::getUnassociatedHORpcClusters(double)' does not match any in class 'L1ITMu::MBLTCollection' struct... (1 Reply)
Discussion started by: emily
1 Replies

10. Shell Programming and Scripting

sed is not overwriting a file

hi i have a file as in follwoing: cat apple.txt Apple is a fruit But this fruit is costly Now I used the sed command and i see output as in following # sed 's/fruit/healthy &/' fruit.txt Apple is a healthy fruit But this healthy fruit is costly # sed works fine here. But... (2 Replies)
Discussion started by: Priya Amaresh
2 Replies

11. Shell Programming and Scripting

Perl hash of hashes anonymous array

Hello experts. I'm having problems with a snippet of code. I was hoping to get help/advice to correct. A file that this script parses has changed to the point where I can no longer use a scalar, it looks as though I need to create an array for a hash of hashes below. The first output of... (1 Reply)
Discussion started by: timj123
1 Replies