Gio001, ksh88 is a very old version of the Korn Shell. If you upgrade to ksh93, it has excellent build-in date arithmetic support amongst other major enhancements.
To use Aigles example where the DOY is 217.
Code:
$ printf "%(%D)T\n" 217
08/05/09
His output is in DD/MM/YY format. Mine, since I am in North America is in MM/DD/YY format.
Hello,
How do i translate datevalues in unix to normal dates.
and how do i translate normal dates in to datevalues.
I'm using the unix-date.
Sample:
1067949360 to 4-11-03 12:36
and
4-11-03 12:36 to 1067949360
I want to built a script with a question to the user: give in date... (4 Replies)
Hi all,
there is a data in a file wich loks likes
00:00:49|24.48|
00:01:49|22.83|
00:02:49|22.07|
00:03:49|20.72|
00:04:49|21.28|
00:05:49|21.22|
00:06:49|21.38|
00:07:49|20.93|
00:08:49|21.27|
00:09:49|20.65|
00:10:49|19.42|
00:11:49|21.93|
00:12:49|20.62|
00:13:49|20.23|... (3 Replies)
Anybody please help me...
Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary Coded Decimal) representation. Also, draw its Flow Chart.
This is a unix qn...
plz post algorithm for that :confused: (1 Reply)
Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!
1. The problem statement, all variables and given/known data:
Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary... (2 Replies)
Hi
I need help to do some calculation in script.
I have a monitor program (munin) that I would like to log uptime information from a server.
The script looks like this (not complete):
#!/bin/sh
# server_uptime
### Config Start
# Reads the server parameters using the HTTP port with... (7 Replies)
Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!
1. Write a script called "tod" that will display the time of day in am or pm notation rather then the 24 hour clock time. Use expr to convert from 24-hour clock time.
Use... (13 Replies)
Hi,
I want to convert two hexadecimal numbers to decimal using unix command line.
1cce446295197a9d6352f9f223a9b698
fc8f99ac06e88c4faf669cf366f60d
I tried using
`echo "ibase=16; $no |bc`
printf '%x\n' "1cce446295197a9d6352f9f223a9b698"
but it doesn't work for such big number it... (4 Replies)
Hi ,
seq can be 0...128
int windex = seq / 8;
int bindex = seq % 8;
unsigned char bitvalue = '\x01' << (7-bindex) ;
bpv.bitmapvalue = bitvalue;
This is the part of a program to convert decimal to bitmap value of hexadecimal.
I want this to change to convert only to... (1 Reply)
I used the below script to Sum up a field in a file based on some unique values. But the problem is when it is summing up the units, it is truncating to 2 decimals and not 6 decimals as in the input file (Input file has the units with up to 6 Decimals – Sample data below, when the units in the 2... (4 Replies)
Discussion started by: brlsubbu
4 Replies
LEARN ABOUT DEBIAN
pltimefmt
PLTIMEFMT(3plplot) PLplot API PLTIMEFMT(3plplot)NAME
pltimefmt - Set format for date / time labels
SYNOPSIS
pltimefmt(fmt)
DESCRIPTION
Sets the format for date / time labels. To enable date / time format labels see the options to plbox(3plplot) and plenv(3plplot).
Redacted form: pltimefmt(fmt)
This function is used in example 29.
ARGUMENTS
fmt (const char *, fmt)
This string is passed directly to the system strftime. See the system documentation for a full list of conversion specifications for
your system. All conversion specifications take the form of a '%' character followed by further conversion specification character.
All other text is printed as-is. Common options include: %c: The preferred date and time representation for the current locale. %d:
The day of the month as a decimal number. %H: The hour as a decimal number using a 24-hour clock. %j: The day of the year as a
decimal number. %m: The month as a decimal number. %M: The minute as a decimal number. %S: The second as a decimal number. %y:
The year as a decimal number without a century. %Y: The year as a decimal number including a century.
AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the
PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere.
SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources.
August, 2012 PLTIMEFMT(3plplot)