Sponsored Content
Top Forums Shell Programming and Scripting Perl System command calls to variable Post 302256551 by 4scriptmoni on Monday 10th of November 2008 05:37:01 AM
Old 11-10-2008
Perl System command calls to variable

I am new to scripting in Perl so I have a dumb question.
I know I can call system commands using

system("date");

But I am not able to:
1. set its output to a variable
2. run in quiet mode(no output to the screen)

The examples i have

Code:
#!/usr/bin/perl
print `date +\%y\%m\%d.\%H\%M`;   # OK
x=`date +\%y\%m\%d.\%H\%M`;     #ERROR
print x;

I get something like
Can't modify constant item in scalar assignment
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

System Calls

What does the system call "dup" do? What is the difference between dup and dup2 I have a fair idea of what it does but I am confused when its coming down to the exact details... Please help me!:confused: (2 Replies)
Discussion started by: clickonline1
2 Replies

2. UNIX for Dummies Questions & Answers

System calls for cp and mv

Which system calls are made for operations cp and mv (2 Replies)
Discussion started by: gaurava99
2 Replies

3. UNIX for Dummies Questions & Answers

System calls?

open, creat, read, write, lseek and close Are they all primitive? :confused: *Another Question: is there a different between a system call, and an i/o system call? (2 Replies)
Discussion started by: PlunderBunny
2 Replies

4. Solaris

System calls ?

where can i find the differences in System calls between solaris and aix? also is it possible to find a comprehensive list of them? (1 Reply)
Discussion started by: TECHRAMESH
1 Replies

5. UNIX Desktop Questions & Answers

Using system calls

Hi, I'm new to UNIX system calls. Can someone share your knowledge as to how exactly system calls should be executed? Can they be typed like commands such as mkdir on the terminal itself? Also, are there any websites which will show me an example of the output to expect when a system call like... (1 Reply)
Discussion started by: ilavenil
1 Replies

6. Programming

System calls

why user is not able to switch from user to kernel mode by writing the function whose code is identical to system call. (1 Reply)
Discussion started by: joshighanshyam
1 Replies

7. BSD

system calls

what is the functions and relationship between fork,exec,wait system calls as i am a beginer just want the fundamentals. (1 Reply)
Discussion started by: sangramdas
1 Replies

8. UNIX for Dummies Questions & Answers

About system calls.

Hi all, I am new here . I want to know about system call in detail. As system calls are also function .How system identifies it.:) (2 Replies)
Discussion started by: vishwasrao
2 Replies

9. UNIX for Dummies Questions & Answers

system calls in C

Hello, how would i be able to call ps in C programming? thanks, ---------- Post updated at 01:39 AM ---------- Previous update was at 01:31 AM ---------- here's the complete system call, ps -o pid -p %d, getpit() (2 Replies)
Discussion started by: l flipboi l
2 Replies

10. HP-UX

Command to trace System Calls on HP UX

All, Kindly let me know command which is used to trace the system calls on HP - UX server when an executable is run. On Solaris we have TRUSS which does the need. On HP UX we have TUSC command which is a third party software. Currently this is not installed on my HP Server. If there... (3 Replies)
Discussion started by: helper
3 Replies
Weather::Com::DateTime(3pm)				User Contributed Perl Documentation			       Weather::Com::DateTime(3pm)

NAME
Weather::Com::DateTime - date and time class SYNOPSIS
#!/usr/bin/perl -w use Weather::Com::DateTime; my $gmt_offset = 1; # e.g. for Germany in winter my $datetime = Weather::Com::DateTime->new($gmt_offset); $datetime->set_lsup('02/25/05 11:21 PM Local Time'); print "This is the date '02/25/05 11:21 PM' in Germany: "; print "Epoc: ", $datetime->epoc(), " "; print "GMT (UTC): ". gmtime($datetime->epoc()). " "; print "My local time: ". localtime($datetime->epoc()). " "; print "And finally German time: ", $datetime->time(), " o'clock at ", $datetime->date(), " "; DESCRIPTION
Weather::Com::DateTime objects are used to encapsulate a date or time provided by the OO interface (e.g. localtime, sunrise, sunset, etc.). This is done because there are many ways to use a date or time and to present it in your programs using Weather::Com. This class provides some predefined formats for date and time but also enables you to easily define your own ones. These objects always represent the local time of a Weather::Com::Location object. That is, if you have a location object for New York City and your server running the weather script is located in Los Angeles, for example, this line print "Sunrise at: ", $location->sunrise()->time(), " "; will print the time of sunrise (in 24h format) in EST and not corresponding to the timezone of Los Angeles! If you'd like to now what this is in GMT you could call print "Sunrise at: ". gmtime($location->sunrise()->epoc()). " "; or if you want to know when the sun rises at the location in your servers local time than just call print "Sunrise at: ". localtime($location->sunrise()->epoc()). " "; There are two ways to get your own date or time format: 1. You use the "formatted()" method and provide a format string to it. 2. If you'd like to define your own "date()" or "time()" method, simply change the corresponding methods. What you can change in which way without destroying the whole class, is described in section INTERFACE. CONSTRUCTOR
You usually would not construct an object of this class yourself. This is implicitely done when you call one of the OO interfaces date or time methods. The constructor can take a GMT offset in positive or negative hours. If one calls the constructor without any GMT offset, we assume you want a GMT object. METHODS
epoc(epoc seconds) With this method you can set the date and time using epocs (GMT) directly. It returns the currently set epoc seconds (GMT). formatted(format) This method returns a date or time formatted in the way you ask for and corresponding to the local time of the parent object. The "format" you provide to this method has to be a valid Time::Format format. For details please refer to Time::Format. set_date(date) With this method one can set the date of the object using an input format like "Feb 13" which is the 13th of february of the current year. Using this method, the time is set to 00:00. The year is the current one. set_time(time) With this method one can set the time of the object using an input format like "8:30 AM". The date is set to the current date of the host the script is running on. set_lsup(lsup) With this method one can set the date of the object using the weather.com's special last update format that is like "2/12/05 4:50 PM Local Time". date() Returns the date in the format "1. February 2005". time() Returns the time in the format "22:15". time_ampm() Returns the time in the format "10:15 PM". weekday() Returns the day of week with like "Wednesday". day() Returns the day in month. month() Returns the name of the month. mon() Returns the number of the month year() Returns the year (4 digits). AUTHOR
Thomas Schnuecker, <thomas@schnuecker.de> COPYRIGHT AND LICENSE
Copyright (C) 2004-2007 by Thomas Schnuecker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The data provided by weather.com and made accessible by this OO interface can be used for free under special terms. Please have a look at the application programming guide of weather.com (<http://www.weather.com/services/xmloap.html>)! perl v5.8.8 2007-07-09 Weather::Com::DateTime(3pm)
All times are GMT -4. The time now is 09:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy