The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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 and shell scripting languages 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 07:35 PM
Shell script creating too many processes. Miller_K Shell Programming and Scripting 3 05-22-2007 11:42 AM
Specify a previous date as start date in shell script ritzwan0 Shell Programming and Scripting 2 09-25-2006 05:58 PM
Creating my first Shell Script plmahan Shell Programming and Scripting 1 11-21-2004 11:32 PM
help on creating shell script master_6ez Shell Programming and Scripting 1 11-21-2004 09:21 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 12-06-2005
aarora_98 aarora_98 is offline
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 09:14 PM.. Reason: Remove email address
  #2 (permalink)  
Old 12-06-2005
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,111
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.
  #3 (permalink)  
Old 12-06-2005
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
Try this code:
Code:
mkdir $(date +%d_%m_%Y)
or
Code:
mkdir `date +%d_%m_%Y`
  #4 (permalink)  
Old 12-07-2005
aarora_98 aarora_98 is offline
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
  #5 (permalink)  
Old 12-07-2005
aarora_98 aarora_98 is offline
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
  #6 (permalink)  
Old 12-07-2005
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,796
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.
  #7 (permalink)  
Old 12-07-2005
rajus19 rajus19 is offline
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
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 07:10 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0