how to put wildcard in path set


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to put wildcard in path set
# 1  
Old 04-03-2008
how to put wildcard in path set

date +%m%d%y

logdir=/bmp/dyn/logfiles/sm/pgsd/pglog
logdir="$logdir/pglog'$date'"
echo $logdir

i have a program like above

echo $logdir should display
-----
/bmp/dyn/logfiles/sm/pgsd/pglog/pglog030408
----
but i am not getting that as per that
could some one please suggest that

and also can i put like this to find in that WILD card search ?


logdir="$logdir/pglog'$date'"*
# 2  
Old 04-03-2008
Quote:
Originally Posted by mail2sant
date +%m%d%y

logdir=/bmp/dyn/logfiles/sm/pgsd/pglog
logdir="$logdir/pglog'$date'"
echo $logdir

i have a program like above

echo $logdir should display
-----
/bmp/dyn/logfiles/sm/pgsd/pglog/pglog030408
----
but i am not getting that as per that
could some one please suggest that

and also can i put like this to find in that WILD card search ?


logdir="$logdir/pglog'$date'"*
Use the back stick's
Code:
DATE=`date  +%m%d%y`

 logdir=/bmp/dyn/logfiles/sm/pgsd/pglog
 logdir="$logdir/pglog$DATE"
 echo $logdir

or..
Code:
 logdir=/bmp/dyn/logfiles/sm/pgsd/pglog
 logdir="$logdir/pglog`date  +%m%d%y`"
 echo $logdir

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem to match a path in a file and put it into a variable

Hello,:p I made a script which do a backup on remote servers with a rsync command. I have a config.cfg with the IPs and the paths where it will copy the directory. The problem is that it doesn't match the paths, So, here my script and its output with the debug : #!/bin/bash # PATHS... (7 Replies)
Discussion started by: Arnaudh78
7 Replies

2. UNIX for Dummies Questions & Answers

Path set

Something changed on my unix box. Now when I log in it is showing entire path. It used to show only $ prompt before. I know I need to do something in .profile to show only $ prompt Could you please tell me what I should do, to show only $ prompt. (4 Replies)
Discussion started by: raopatwari
4 Replies

3. UNIX for Dummies Questions & Answers

How do I set the path

Very new to this type of thing so go easy on me....... I have downloaded a command language for data display. It came as ncl_ncarg-5.2.1.MacOS_10.6_i386_64bit_gcc421.tar.gz and I unzipped/tarred it into my local directory. The new directory, ncl_ncarg-5.2.1.MacOS_10.6_i386_64bit_gcc421,... (7 Replies)
Discussion started by: davcra
7 Replies

4. UNIX for Dummies Questions & Answers

PATH set but I can't find where!!!!

Hi, Can anybody help with this? When I log into my user account on my box via ssh and then instantly perform an env command I see that my path has been set as follows: PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin My user account uses the ksh shell. In my home directory there is no... (7 Replies)
Discussion started by: Donkey25
7 Replies

5. Solaris

Not Able to Set the path

Hi, I want to set the path for my application so I am setting the path as below -- PATH=${PATH}:.:/envs/mldev/tools:/envs/mldev/common/tools:${HOME}:/bin/p4v:/usr/j2se:/usr/j2se/bin:/usr/j2se/lib or PATH="\ /usr/bin:\ /usr/sbin:\ /usr/dt/bin:\ ... (7 Replies)
Discussion started by: smartgupta
7 Replies

6. UNIX for Dummies Questions & Answers

Set java Path

Hey eveyone, I am new to unix, and I just installed java 6, however it doesn't recognize javac command I tried to set the path such as: set path="/usr/java/jdk1.6.0_06/bin/ but i still got the same error message. any ideas? -andi (1 Reply)
Discussion started by: adtd8
1 Replies

7. UNIX for Dummies Questions & Answers

how to set man path

hi, I m not able to see manual page of any commmand in my linux system. every time if i m typing $man <comand> it is showing the no manual entry . I think the man path is not set properrly . could any one tell me how to get the man pages location in the system so that i can set it.... (1 Reply)
Discussion started by: useless79
1 Replies

8. UNIX for Dummies Questions & Answers

set variable PATH

Hi, i know that this topic discussed for many times but although i had researched them i couldnt succeed in my problem. i am following a step-by-step instruction guide and must do the following: ------------- To ensure access, set the path PATH $ORACLE_HOME/perl/bin:$PATH and set the Perl... (2 Replies)
Discussion started by: merope
2 Replies

9. Solaris

set path

hi how do i change the default PATH in my system. i log in as root, and i have .profile file in my / directory. ive put the PATH=.:/usr.......... statement, but that doesnt seem to be working i also wanted to know why exactly we need the profile file in etc? (6 Replies)
Discussion started by: strider
6 Replies

10. UNIX for Dummies Questions & Answers

Find wildcard .shtml files in wildcard directories and removing them- How's it done?

I'm trying to figure out how to build a small shell script that will find old .shtml files in every /tgp/ directory on the server and delete them if they are older than 10 days... The structure of the paths are like this: /home/domains/www.domain2.com/tgp/ /home/domains/www.domain3.com/tgp/... (1 Reply)
Discussion started by: Neko
1 Replies
Login or Register to Ask a Question