Jan 13, 2004 #1 CALYAN Programmer Apr 23, 2001 39 US I used this to extract somepart of the date FILENAME=$(date +%b%d) printf $FILENAME It generates output like this.? Jan13(example) But I need Jan13.gz how to add this? regards s.kalyan
I used this to extract somepart of the date FILENAME=$(date +%b%d) printf $FILENAME It generates output like this.? Jan13(example) But I need Jan13.gz how to add this? regards s.kalyan
Jan 13, 2004 1 #2 aigles Technical User Sep 20, 2001 464 FR FILENAME=$(date +%b%d).gz printf $FILENAME Jean Pierre. Upvote 0 Downvote
Jan 13, 2004 #3 PHV MIS Nov 8, 2002 53,708 FR Try this: Code: FILENAME=$(date "+%b%d.gz") Hope This Help PH. Upvote 0 Downvote