The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM


Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
shell script to selectively tar directory based on date fara_aris Shell Programming and Scripting 2 03-16-2008 04:35 PM
Shell script creating too many processes. Miller_K Shell Programming and Scripting 3 05-22-2007 08:42 AM
Specify a previous date as start date in shell script ritzwan0 Shell Programming and Scripting 2 09-25-2006 02:58 PM
Creating my first Shell Script plmahan Shell Programming and Scripting 1 11-21-2004 08:32 PM
help on creating shell script master_6ez Shell Programming and Scripting 1 11-21-2004 06:21 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 12-06-2005
Registered User
 

Join Date: Dec 2005
Posts: 33
Shell script for Creating Directory with name as system date

Dear Sir/Madam,

I need a bit of your help. The problem is as follows :

I have to create a directory in unix whose name is that of system date in the dd_mon_yyyy format . I am able to extract a date in required format ina variable , but when i'm using this variable in mkdir it is not creating a directory of that date, rather it is creating the dirictory of the same name as the variable( mkdir accepts a string name for creating directories , but I don't know how to convert date to string using shell scripting). I am writing below the piece of script of what I am doing. Plz correct me where ever possible. i hope to see a nice running solution from your side.

>Today='date +%d_%m_%Y'
>set
>$Today
>mkdir $Today

I hope you will help me.

plz do mail me a solution at EMAIL ADDRESS REMOVED

Thanks in advance.
Arun

Last edited by Perderabo; 12-06-2005 at 06:14 PM. Reason: Remove email address
Reply With Quote
Forum Sponsor
  #2  
Old 12-06-2005
Perderabo's Avatar
Unix Daemon
 

Join Date: Aug 2001
Location: Washington DC Area
Posts: 8,667
Please make sure that you have read our rules. And note:
(10) Don't post your email address and ask for an email reply. The forums are for the benefit of all, so all Q&A should take place in the forums.
Reply With Quote
  #3  
Old 12-06-2005
blowtorch's Avatar
Supporter
 
Join Date: Dec 2004
Location: Singapore
Posts: 2,328
Try this code:
Code:
mkdir $(date +%d_%m_%Y)
or
Code:
mkdir `date +%d_%m_%Y`
Reply With Quote
  #4  
Old 12-07-2005
Registered User
 

Join Date: Dec 2005
Posts: 33
Re: Shell Scripting for creating dir with system date...

Hi,


I have tried using


Today='date +%m%d%Y'
set
mkdir $today


But its not working. I am working on telnet. Every time it is creating directory with name date +%m%d%Y .. Plz tell me what should i do.

Thanks
Aru
Reply With Quote
  #5  
Old 12-07-2005
Registered User
 

Join Date: Dec 2005
Posts: 33
Re: Shell Scripting for creating dir with system date...

Even with :

mkdir $(date +%d%m%Y)

it is giving the error syntax error : '(' unexpected


And with :

mkdir 'date +%m%d%Y'

it is creating dir with name date +%d%m%Y , but not with system date.

Plz help
Reply With Quote
  #6  
Old 12-07-2005
vino's Avatar
Supporter (in vino veritas)
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,699
Whatever blowtorch has given works well for me.

What OS are you on ?

And it is not
Code:
mkdir 'date +%m%d%Y'
it is
Code:
mkdir `date +%m%d%Y`
Note the difference between ` and '

` is the backtick character above the tab key.
Reply With Quote
  #7  
Old 12-07-2005
Registered User
 

Join Date: Feb 2005
Location: Bangalore
Posts: 36
try with blowtorch's code(mkdir `date +%d_%m_%Y`), its working fine.
You have to place the backquotes(`) before and after the date command, you might have placed single quotes check it once.

Regards,
Raju
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 06:07 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0