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
performing cleanup when a job finishes ChicagoBlues Shell Programming and Scripting 4 03-06-2008 09:41 AM
awk/sed/ksh script to cleanup /etc/group file pdtak Shell Programming and Scripting 6 02-28-2008 12:33 AM
pthread_cleanup_push/pop - cleanup handler problem sonicx High Level Programming 2 12-08-2007 11:15 PM
Login ID cleanup MILLERJ62 AIX 1 05-12-2006 01:20 AM
sendmail cleanup thomi39 UNIX for Dummies Questions & Answers 1 02-23-2006 06:48 AM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 01-25-2008
Registered User
 

Join Date: Nov 2006
Posts: 4
Help with cleanup

I am trying to add a unique string to a variable to prevent some name space collisions.

DATAFILE=/u001/app/unica/affinium644/campaign/partitions/limited/tmp/ebf9aaah.t~#
DATETIME=`date +%Y%m%d_%H%M%S`
echo $DATAFILE > tmpnme.txt
sed 's_/_ _g' tmpnme.txt > tmpnme2.txt
DATA=$(cat tmpnme2.txt)
TMPNAME=$(echo $DATA | awk '{print $9}')
TMPNAE2=$(echo ${TMPNAME%.*})
TBLNAME=$(echo ${DATETIME}${TMPNAE2})
rm tmpnme.txt
rm tmpnme2.txt

TBLNAME will be used as the table name and the datafile is unique but I would be just as satisfied to use a random string or something else.

Any help would be appreciated. I am sure this could be done much more efficiently.
Reply With Quote
Forum Sponsor
  #2  
Old 01-25-2008
Registered User
 

Join Date: Jan 2008
Posts: 8
Hi,

I think that the 'mktemp' command (which create a temporary
file with a *unic* name) can be usefull here:

# Create ('-c' option) a 0-length file in the tmp area
typeset -i RC
typeset LP_FILE_PATH=$(mktemp -c); RC=$?
if [[ ${RC} -ne 0 ]]; then
echo "ERROR: cannot create a temporary file"
return ${RC}
fi

# Extract the file name (supposed to be unic)
typeset LP_UNIC_NAME=${LP_FILE_PATH##*/}
# ...
# Do your stuff
# ...

# Don't forget to cleanup the temporary area!
# (to be done at the *END*)
rm -f ${LP_FILE_PATH}

Hope it helps,
C.
Reply With Quote
  #3  
Old 01-25-2008
Registered User
 

Join Date: Nov 2006
Posts: 4
I don't seem to have mktemp on my server.
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:33 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