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
ATF-SH(1)						    BSD General Commands Manual 						 ATF-SH(1)

NAME
atf-sh [-s shell] -- interpreter for shell-based test programs SYNOPSIS
atf-sh script DESCRIPTION
atf-sh is an interpreter that runs the test program given in script after loading the atf-sh(3) library. atf-sh is not a real interpreter though: it is just a wrapper around the system-wide shell defined by ATF_SHELL. atf-sh executes the inter- preter, loads the atf-sh(3) library and then runs the script. You must consider atf-sh to be a POSIX shell by default and thus should not use any non-standard extensions. The following options are available: -s shell Specifies the shell to use instead of the value provided by ATF_SHELL. ENVIRONMENT
ATF_LIBEXECDIR Overrides the builtin directory where atf-sh is located. Should not be overridden other than for testing purposes. ATF_PKGDATADIR Overrides the builtin directory where libatf-sh.subr is located. Should not be overridden other than for testing purposes. ATF_SHELL Path to the system shell to be used in the generated scripts. Scripts must not rely on this variable being set to select a specific interpreter. EXAMPLES
Scripts using atf-sh(3) should start with: #! /usr/bin/env atf-sh Alternatively, if you want to explicitly choose a shell interpreter, you cannot rely on env(1) to find atf-sh. Instead, you have to hardcode the path to atf-sh in the script and then use the -s option afterwards as a single parameter: #! /path/to/bin/atf-sh -s/bin/bash ENVIRONMENT
ATF_SHELL Path to the system shell to be used in the generated scripts. SEE ALSO
atf-sh(3) BSD
September 27, 2014 BSD
All times are GMT -4. The time now is 08:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy