Sponsored Content
Top Forums Shell Programming and Scripting Need help in creating file restoration script from a backup script. Post 302578224 by clx on Thursday 1st of December 2011 06:46:35 AM
Old 12-01-2011
This might work..
Code:
awk  '/^cp/ { n= split($2,A,"/"); s=A[n];  printf ("%s/%s ",$3,s); for (i=1;i<n;i++) {printf ("%s/",A[i])} print j}' abc.sh


output:

Code:
$BKPDIR/appl/*.env $APPL_TOP/
$BKPDIR/appl/*.env $APPL_TOP/admin/
$BKPDIR/appl/*.xml $APPL_TOP/admin/
$BKPDIR/appl/topfile* $APPL_TOP/admin/
$BKPDIR/appl/*def* $APPL_TOP/admin/
$BKPDIR/appl/pasta* $FND_TOP/resource/
$BKPDIR/appl/ixlib* $FND_TOP/resource/
$BKPDIR/appl/MSCPLD.sh $MSC_TOP/bin/
$BKPDIR/8.0.6/*.env $ORACLE_HOME/
$BKPDIR/8.0.6/listener.ora $TNS_ADMIN/
$BKPDIR/8.0.6/tnsnames.ora $TNS_ADMIN/
$BKPDIR/8.0.6/uifont.ali $ORACLE_HOME/guicommon6/tk60/admin/
$BKPDIR/comn/adautocfg.sh $COMMON_TOP/admin/scripts/${CONTEXT_NAME}/
$BKPDIR/comn/adcmctl.sh $COMMON_TOP/admin/scripts/${CONTEXT_NAME}/
$BKPDIR/comn/oai_x_ftp.sh $COMMON_TOP/admin/scripts/${CONTEXT_NAME}/
$BKPDIR/comn/appsweb*.cfg $OA_HTML/bin/
$BKPDIR/iAS/*.env $IAS_ORACLE_HOME/
$BKPDIR/iAS/*.ora $IAS_ORACLE_HOME/network/admin/${CONTEXT_NAME}/
$BKPDIR/iAS/buildFileMoverServlet.sh $IAS_ORACLE_HOME/Apache/Jserv/servlets/
$BKPDIR/iAS/FileMoverServlet* $IAS_ORACLE_HOME/Apache/Jserv/servlets/


Please double test before implementing in your live environment.
 

9 More Discussions You Might Find Interesting

1. Solaris

creating log files for a backup script on solaris

I have a simple backup script that I am running to back up drives across the network. However I need to have detailed log files for this script such as time backup started, what was backed up, if there were any errors and the time that the backup was complete. I would also like the script to... (3 Replies)
Discussion started by: valicon
3 Replies

2. Shell Programming and Scripting

Shell Script backup a file ?

could you please find a solution for this script that backup a file. The file name to backup should be provided as input parameter, the backup file should have the same file name with the extension ".bak". If the user provides no input parameter, the script should display an error message. If... (1 Reply)
Discussion started by: anything
1 Replies

3. Shell Programming and Scripting

(Urgent):Creating flat file using sql script and sqlplus from UNIX Shell Script

Hi, I need help urgently for following issue. Pls help me to resolve this issue. I am calling sql script file(file1.sql) from UNIX Shell Script(script1.ksh) using sql plus and trying to create flat file that contains all records returned from SQL query in SQL script(file1.sql) I given... (6 Replies)
Discussion started by: praka
6 Replies

4. Shell Programming and Scripting

creating a parameter file in the script

Here is my code which i am using wright now: CODE #!/bin/bash awk ' BEGIN { FS="|"; while ( getline <"file1.txt" > 0) a=$2 } { if($1 in a) printf("%s %s Specialty Mapped\n", $1, a) > "mapped.txt" else printf("%s %s Specialty Not mapped\n", $1, $2) > "notmapped.txt" ... (2 Replies)
Discussion started by: dsh007
2 Replies

5. Solaris

question about restoration from backup tape (solaris 10)

I am trying to restore opt on my server. my issue is, all the partitions are saved into the same back up tape. what is the exact command to just restore /opt for example, supposing c0t0d0s7 is the partition for /opt ---------- Post updated at 01:16 PM ---------- Previous update was at... (7 Replies)
Discussion started by: feg
7 Replies

6. UNIX for Dummies Questions & Answers

BackUp Home/Creating User from File

Hi! I want to test something to learn Shell scripting better. 1) How can I make a BackUp from all users and groups homedirectory? I want to save that backup in an archiv. Can I choose how to name the backUp archiv? 2) Ok I want to make a file like csv, in this file are listed Users.... (3 Replies)
Discussion started by: CommanderLinux
3 Replies

7. Shell Programming and Scripting

MySQL Restoration Backup Script

Hi there, Alright I have this line that I'm working with (bash programming): mysql -u username -pHASH ${args} < /home/site/backups/site.${args}.sql I get this error on that line: ./restore.sh: line 51: syntax error near unexpected token `newline' ./restore.sh: line 51: `mysql -u... (5 Replies)
Discussion started by: Pandoula
5 Replies

8. Shell Programming and Scripting

Shell script to call Oracle archive backup script when file system reaches threshold value

Hello All, I need immediate help in creating shell script to call archivebkup.ksh script when archive file system capacity reaches threshold value or 60% Need to identify the unique file system that reaches threshold value. ex: capacity ... (4 Replies)
Discussion started by: sasikanthdba
4 Replies

9. Solaris

Need help in creating script for disk mirror and backup

Hi, I am very new to scripting. I need to create a script which does following. Scenario: First get the format command output echo | format Insert the new disk to Solaris Server Get Zpool status format the new disk ( Here I need to select the new disk which have been inserted, I do... (1 Reply)
Discussion started by: praveensharma21
1 Replies
script(1)							   User Commands							 script(1)

NAME
script - make record of a terminal session SYNOPSIS
script [-a] [filename] DESCRIPTION
The script utility makes a record of everything printed on your screen. The record is written to filename. If no file name is given, the record is saved in the file typescript. See WARNINGS. The script command forks and creates a sub-shell, according to the value of $SHELL, and records the text from this session. The script ends when the forked shell exits or when Control-d is typed. OPTIONS
The following option is supported: -a Appends the session record to filename, rather than overwriting it. NOTES
script places everything that appears on the screen in filename, including prompts. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5) WARNINGS
script can pose a security risk when used in directories that are writable by other users (for example, /tmp), especially when run by a privileged user, that is, root. Be sure that typescript is not a link before running script. SunOS 5.10 30 Jan 2004 script(1)
All times are GMT -4. The time now is 08:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy