Sponsored Content
Operating Systems Solaris Back up solution in Solaris 10 environment Post 302882495 by Abilash_KP on Tuesday 7th of January 2014 09:46:37 AM
Old 01-07-2014
Many thanks for your replies
Is it possible to achieve through shell scripts.
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Need a redundency solution for Solaris.

Dear friends, I look after 10 Solaris servers. What I need to do is to come up with a solution so that in case one of the servers dies, be able to create the same server in the shortest possible way. I believe in Windows OS they use something called "Ghosting ". My question is what should I use to... (3 Replies)
Discussion started by: snili
3 Replies

2. UNIX for Advanced & Expert Users

Clustering solution for RH Linux AS and Solaris x86/AMD 64

Dear All Experts, Would like to know the maturity/ stability of Redhat Linux AS 3.0 and Solaris. My organization need to setup cluster solution. We are well-versed with Veritas Cluster on Solaris. We are thinking of waiting for certification support of the various ISV like Oracle, Veritas... (3 Replies)
Discussion started by: izy100
3 Replies

3. News, Links, Events and Announcements

Well well well... Solaris is back

It looks like Sun is finally back with the x86 crowd with Solaris. Solaris 9 is now on their Download / Order page: http://wwws.sun.com/software/solaris/binaries/get.html but $20 to download and $95 for media... I don't think I'll be rushing out to pay that. Here is a link to their press... (1 Reply)
Discussion started by: LivinFree
1 Replies

4. Solaris

Sample solution for Firefox-3.6.10 pkg in solaris 10 for X86

download pkg from sunfreeware web site (root user mode) step1: #mkdir opt/sft step2: download the package and save it in the opt/sft directory step3: #bunzip2 firefox-3.6.10.en-US.solaris-10-fcs-i386-pkg.bz2 step 4 #pkgadd -d ./firefox-3.6.10.en-US.solaris-10-fcs-i386-pkg ... (3 Replies)
Discussion started by: alamin2010
3 Replies

5. Solaris

OpenSource / Free backup and restore solution for Solaris 10

Is there any free /opensource backup&restore solution available for solaris10 i want to backup Solaris10 machine with oracle 9 version. (0 Replies)
Discussion started by: kashif_islam
0 Replies
SHELL-QUOTE(1)						User Contributed Perl Documentation					    SHELL-QUOTE(1)

NAME
shell-quote - quote arguments for safe use, unmodified in a shell command SYNOPSIS
shell-quote [switch]... arg... DESCRIPTION
shell-quote lets you pass arbitrary strings through the shell so that they won't be changed by the shell. This lets you process commands or files with embedded white space or shell globbing characters safely. Here are a few examples. EXAMPLES
ssh preserving args When running a remote command with ssh, ssh doesn't preserve the separate arguments it receives. It just joins them with spaces and passes them to "$SHELL -c". This doesn't work as intended: ssh host touch 'hi there' # fails It creates 2 files, hi and there. Instead, do this: cmd=`shell-quote touch 'hi there'` ssh host "$cmd" This gives you just 1 file, hi there. process find output It's not ordinarily possible to process an arbitrary list of files output by find with a shell script. Anything you put in $IFS to split up the output could legitimately be in a file's name. Here's how you can do it using shell-quote: eval set -- `find -type f -print0 | xargs -0 shell-quote --` debug shell scripts shell-quote is better than echo for debugging shell scripts. debug() { [ -z "$debug" ] || shell-quote "debug:" "$@" } With echo you can't tell the difference between "debug 'foo bar'" and "debug foo bar", but with shell-quote you can. save a command for later shell-quote can be used to build up a shell command to run later. Say you want the user to be able to give you switches for a command you're going to run. If you don't want the switches to be re-evaluated by the shell (which is usually a good idea, else there are things the user can't pass through), you can do something like this: user_switches= while [ $# != 0 ] do case x$1 in x--pass-through) [ $# -gt 1 ] || die "need an argument for $1" user_switches="$user_switches "`shell-quote -- "$2"` shift;; # process other switches esac shift done # later eval "shell-quote some-command $user_switches my args" OPTIONS
--debug Turn debugging on. --help Show the usage message and die. --version Show the version number and exit. AVAILABILITY
The code is licensed under the GNU GPL. Check http://www.argon.org/~roderick/ or CPAN for updated versions. AUTHOR
Roderick Schertler <roderick@argon.org> perl v5.16.3 2010-06-11 SHELL-QUOTE(1)
All times are GMT -4. The time now is 02:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy