copy script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting copy script
# 1  
Old 05-01-2006
copy script

I am trying to figure out how to copy a file that changes daily to a new directory with a different name each day. Example : webfile created today copy webfile to /hold/webfile.1
tommorrow copy webfile /hold/webfile.2

Is there a way to do this? I can't seem to figure this out.
This needs to be done on a daily basis.. every day.

Thanks

Scbrown2
# 2  
Old 05-01-2006
Its always advisable to apend the timestamp to the file.. its easier.. unless you have specific requirement..
However if you really want a numeric increment.. you can try following:
Code:
#!/bin/ksh
#===================
extn=`ls -l webfile* | sed -e 's/.*[.]//g' | sort -nr | head -1` 
let extn=$extn+1 
cp webfile webfile.$extn
#===================

However this assumes that you a webfile. file to start with..

Last edited by Ambikesh; 05-01-2006 at 04:31 PM..
# 3  
Old 05-01-2006
Thank you, it worked great, I just had to make the first copy with a .1 at the end or I got a bad number message.

Thanks again!!!

Scbrown2
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to copy script output to a variable using same script?

I'm trying to copy script output and use it in this same script as a variable, and call the variable when script is compiled. The script is below. #!/bin/bash output=$(script) while read line; do if ]; then grep "$line" logfile.txt # Create text file echo "From: IT ... (4 Replies)
Discussion started by: SysAdminRialto
4 Replies

2. Shell Programming and Scripting

Script for File Copy

Hello All, This is my first post to unix.com. I have requirement to copy multiple *.dmp files from one server to other server. I have that other server NFS filesystem mapped to source server. Dump files are so huge almost 20TB. There are around 15-20 files each of 1.1TB. I want to copy these... (6 Replies)
Discussion started by: Amit Bansode
6 Replies

3. Shell Programming and Scripting

Help with file copy script

Hello, I am still pretty new at writing shell scripts and may have bitten off more than I can chew. I am trying to write a script that figures out if a file exists (a known name) in directory a, then copy it to my selected destination, otherwise, look in directory b and check there. If it is in... (14 Replies)
Discussion started by: r34lj4k3
14 Replies

4. UNIX for Dummies Questions & Answers

Copy script

Hi Experts Hi I'm trying run the below code, unfortunately it throwing error. Error Message: tail:cannot open ‘ H:\Test_Folder\' No such file or directory tail: invalid option -3 cp ` ls -tr *REPORT*.txt |tail -3` H:\Test_Folder\ to give you more insight of my requirement: I am trying... (3 Replies)
Discussion started by: parpaa
3 Replies

5. UNIX for Dummies Questions & Answers

Help with Copy Shell Script

Hello, I am currently learning UNIX scripting and have written a simple copy program. However, upon execution, it returns an error despite debugging correctly. Can anyone assist in explaining this? Attached screenshots illustrating a test execution. Many thanks. (13 Replies)
Discussion started by: dixer
13 Replies

6. Shell Programming and Scripting

copy script

I have a little copy script, #! /usr/bin/bash FILE_COPY_LIST=$1 SOURCE_DIRECTORY=$2 DESTINATION_DIRECTORY=$3 while read file do if ; then echo $file " cannot be found" fi cp -f $SOURCE_DIRECTORY'/'$file $DESTINATION_DIRECTORY done < $FILE_COPY_LIST This just... (3 Replies)
Discussion started by: LMHmedchem
3 Replies

7. Shell Programming and Scripting

Remote Copy Script

Hi All, My first post on the Forums! I've just whipped up a quick script to slightly automate a log file retrieval process for work and to be completely honest my BASH scirpting knownledge is extremely limited as is my understanding of a lot of linux commands. Basically the scripts purpose... (3 Replies)
Discussion started by: effektd
3 Replies

8. Shell Programming and Scripting

Help with Find All/Copy Script

Hi Gang, I am an old unix user and just recently returned in the flavor of a Mac. I have tons of pictures in the .orf format and would like to write a script to: Search the Hard drives for that file type Then, depending on date, copy it to a specific folder If there is an exact... (2 Replies)
Discussion started by: jlfx
2 Replies

9. Shell Programming and Scripting

Help:Copy file from one to other using script

Hi Frineds, Through my DTS process I am generating one file at one directory like, /sqlsrvr_demo/dts/put/transaction_fact.csv now I want to copy this files(only when the files size is greater than 0 kb) to some other directory like /sqlsrvr_demo/dts/get/transaction_fact.csv Can... (2 Replies)
Discussion started by: sunnysunny
2 Replies

10. UNIX for Dummies Questions & Answers

Copy Script Problems .....

I got this script: print -n "Enter file name: " read name .... ..... ..... etc but at the prmpt, when I press enter (without typin a word), comes up with sum error message, is there away of getting it not to print that message?? (8 Replies)
Discussion started by: Makaveli.2003
8 Replies
Login or Register to Ask a Question