assign date to a variable


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting assign date to a variable
# 1  
Old 09-01-2011
assign date to a variable

hi,

i've just started learning a bit of shell scripting and i wanted to know how to assign the value of the day of the month (i think the command for that is date +%d) to a variable say 'd' so that i can display 'st', 'nd', 'rd' and 'th' depending upon the value of that variable.

i'd appreciate it if someone could explain how i could go about doing this...i'm a 16yr old newbie, so i don't know how far hints and pointers would go...but any help is welcome Smilie
# 2  
Old 09-01-2011
General command to variable assignment:
Code:
d=`date +%d`

or
Code:
d=$(date +%d)

PS.
I guess You didn't try to look it for Yourself at all. Did You? Smilie
# 3  
Old 09-01-2011
I did the same thing actually, however, I kept getting the full date when I used echo $d and so I don't know how to execute the rest of what I want to do.

And I'm doing this in terminal (OS 10.7.1) and I hope to execute this script in geektool...so yeah, I don't have much to refer to, I'm sorry if this question was too noobish :P
# 4  
Old 09-01-2011
hmm, why dont you post the command and the results here.
# 5  
Old 09-01-2011
xXWiLdAcEXx-2:~ xXWiLdAcEXx$ DATE=`date +%d`
xXWiLdAcEXx-2:~ xXWiLdAcEXx$ echo $DATE
Thu 1 Sep 2011 14:00:33 AST

thats it...however when i do

xXWiLdAcEXx-2:~ xXWiLdAcEXx$ date +%d
01

which i might be able to manipulate using the if/then construct...yes?
# 6  
Old 09-01-2011
just give a try like this...

Code:
 
mydate=`date "+%d"`
echo $mydate

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Assign value to variable

Hi Guys, I need to assign the value of which has rows to a variable, Can you advise how to do that hive --orcfiledump /hdfs_path/ | grep "Rows" Rows: 131554 I need to assign this row count itself to a unix variable count=$(hive --orcfiledump /hdfs_path/ | grep "Rows") Expected ... (6 Replies)
Discussion started by: Master_Mind
6 Replies

2. UNIX for Beginners Questions & Answers

How can I assign awk's variable to shell script's variable?

I have the following script, and I want to assign the output ($10 and $5) from awk to N and L: grdinfo data.grd | awk '{print $10,$5}'| read N L output from gridinfo data.grd is: data.grd 50 100 41 82 -2796 6944 0.016 0.016 3001 2461. where N and L is suppose to be 3001 and 100. I use... (8 Replies)
Discussion started by: geomarine
8 Replies

3. UNIX for Beginners Questions & Answers

Need to pass variable in a command and assign value to a variable

Hello All, Hope you're doing well ! I am trying below command to be passed in a shell script, header_date_14 is a variable and $1 is the name of a file I intend to pass as a command line argument, however command line argument is not being accepted. header_date_14=$(m_dump... (8 Replies)
Discussion started by: ektubbe
8 Replies

4. Shell Programming and Scripting

ksh PS4 variable assign to `date` output

Hi guys, Is there a way to assign curent time to PS4 variable in ksh. My goal is to have each line produced by 'set -x' command to have a time stamp. Here is my code: $cat test #!/usr/bin/ksh export PS4="`date` " set -x echo "TRACE LINE ONE" echo "I WILL SLEEP FOR 10 SEC" sleep 10... (2 Replies)
Discussion started by: aoussenko
2 Replies

5. Emergency UNIX and Linux Support

assign yesterday's date to variable

Hi, i am trying to assign yesterday's date to a variable on below system - Machine hardware: sun4u OS version: 5.9 Processor type: sparc usr> setenv dt `date +"%Y%m%d"` usr> echo $dt 20100820 i am able to assign today's date but similarly i want to assign yesterday's... (8 Replies)
Discussion started by: rahulbahulekar
8 Replies

6. Shell Programming and Scripting

Shell assign variable to another variable

How can I assign a variable to an variable. IE $car=honda One way I can do it is export $car=honda or let $car=2323 Is there any other ways to preform this task (3 Replies)
Discussion started by: 3junior
3 Replies

7. Shell Programming and Scripting

assign awk's variable to shell script's variable?

Dear All, we have a command output which looks like : Total 200 queues in 30000 Kbytes and we're going to get "200" and "30000" for further process. currently, i'm using : numA=echo $OUTPUT | awk '{print $2}' numB=echo $OUTPUT | awk '{print $5}' my question is : can I use just one... (4 Replies)
Discussion started by: tiger2000
4 Replies

8. Shell Programming and Scripting

Not able to assign a value to variable

Hi Experts, I am facing some problem while developing the script.My input config.csv file contains the three columns namely pathname,filename,filetype.Based on the file type i have to use ftp command that is if filetype=csv then do ftp. The input file is cat config.csv... (13 Replies)
Discussion started by: Amey Joshi
13 Replies

9. Shell Programming and Scripting

assign a value to variable

I have to assign a result of a query to a vairable like this how can i do this Query = select count(*) from table x=`db2 ${Query}| sed -n '4p'` but this doesn't work, is there any other way to assign the result without redirecting the result to temp file. . Thanks Mark. (3 Replies)
Discussion started by: markjason
3 Replies

10. UNIX for Dummies Questions & Answers

assign to variable

why i can't use this command: echo $arg | cut -c 1,2 | read remainArg or echo $arg | cut -c 1,2 | read $remainArg so that the result will be assign to remainArg. Anyway to do this? :) (1 Reply)
Discussion started by: AkumaTay
1 Replies
Login or Register to Ask a Question