rewrite date


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers rewrite date
# 1  
Old 06-09-2008
rewrite date

I'm looking to have function that takes the present month and rewrites it into this form: _06_ (june), _09_ (september), and so on..

I would like this to be a my $this_month=code that rewrites date function

because I would like to be a able to call it multiple times in the script by writing $this_month
# 2  
Old 06-09-2008
Something like this?

Code:
this_month=$(date "+_%m_")

Check the man page of date.

Regards
# 3  
Old 06-09-2008
I don't know much about programming so you'll excuse me if I'm using this the wrong way.

I put this at the top of the script:

my $this_month=$(date "+_%m_")

and then wrote $this_month where I wanted it to be printed.

I got: 500 Internal Server Error
# 4  
Old 06-09-2008
Quote:
Originally Posted by marringi
I got: 500 Internal Server Error
Looks like an http server error. Are you asking for a shell script solution or a web app solution?
# 5  
Old 06-09-2008
This is a web application (.cgi).

I'm going to use this in print <<EOF many times so I would like it to be simple to call it.
# 6  
Old 06-10-2008
Quote:
Originally Posted by Franklin52
Something like this?

Code:
this_month=$(date "+_%m_")

Check the man page of date.

Regards
I got this to work:

Code:
my $this_month = `date "+_%m_"`;

Thanks for the help
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Rewrite proxypass

Hi, I have a Apache 2.0 web server. When a users comes in to sitea.com a check is applied if the path ends with *t*, the user hits a rewrite rule that adds an environment variable called x is hit with a proxypass. This has worked successfully in the past, but recently I added another rewrite... (0 Replies)
Discussion started by: 3junior
0 Replies

2. Shell Programming and Scripting

Efficient rewrite of code?

egrep -v "#" ${SERVERS} | while read shosts do grep -Pi "|" ${LOGFILE} | egrep "${snhosts}" | egrep "NOTIFICATION:" | awk -F";" '{print $3}' | sort -n | uniq | while read CEXIST do ... (6 Replies)
Discussion started by: SkySmart
6 Replies

3. Web Development

Need help with rewrite rule

Hi, I hosted my site on Apache web server. I wanted to redirect all the users request to a HTML page(maintenance page). I used the below rewrite rule to do ths same. RewriteEngine on RewriteRule .* /maintenance.html The maintenance.html page contains an image. When ever I try to... (2 Replies)
Discussion started by: BSrikanthB
2 Replies

4. Web Development

Apache rewrite rules.

Hi, I am new to Apache but I have requirement as follows. if the url is http://images/data1/templates/ it should redirect to http:/172.20.224.23/templates/ if the url doesn't have "data1/templates" (mean http://images/) it should redirect to http://images:8080/. I tried as below ... (3 Replies)
Discussion started by: sambadamerla
3 Replies

5. Web Development

.htaccess Rewrite Rule

Hello All, I have been asked to create a .htaccess redirect. I have never attempted to work with one of these files. We have a pretty vanilla LAMP setup using rhel4 apache1.3 and php4.2.3. I was instructed to place the .htaccess file in the document root of the site and and to attempt to... (1 Reply)
Discussion started by: jaysunn
1 Replies

6. Shell Programming and Scripting

grep help, how do i rewrite this

Thanks , franklin you method worked, i knew i had to use a while loop and getline in there just didnt know the proper order :) Hi everyone, im trying to make the following command line shorter by introducing a script that join up all the grep commands ./new1a < numbers.txt | grep -i -v '^a '... (5 Replies)
Discussion started by: weezybaby
5 Replies

7. Shell Programming and Scripting

How to rewrite a line in a file

Hi Can anyone tell me how can rewrite a line in a file by using line number? I tried to use sed by failed to do so. For example HELLO 179.390 111.560 HOW TO DO WHAT TO DO to become HELLO 200 3000 HOW TO DO WHAT TO DO (21 Replies)
Discussion started by: c0384
21 Replies

8. Shell Programming and Scripting

How do I rewrite to use a while instead of find?

for FILE in `find /home/Upload/*` Need to use a while instead to prevent errors when the file is emptied (4 Replies)
Discussion started by: goodmis
4 Replies

9. Shell Programming and Scripting

rewrite the same info in 3 different files

i would like to be able rewrite the same info in 3 different files /path/file1.ext /path/file2.ext /path/file3.ext can u help me please with shell script ? lets say i want to write "12345" thanks (6 Replies)
Discussion started by: strok
6 Replies

10. UNIX for Advanced & Expert Users

Apache Rewrite help!

I am trying to write RewriteRule on Apache_1.3.26 to get users web page from another server. for example if users tries to get web page on www.somedomain.com/~usersname it will get the web page from www.testdomain.com/~username without redirect and users will not be aware of any redirect... (1 Reply)
Discussion started by: hassan2
1 Replies
Login or Register to Ask a Question