Bacula-users

Re: [Bacula-users] How to get free hard disk space back ?

2012-05-04 08:32:02
Subject: Re: [Bacula-users] How to get free hard disk space back ?
From: Konstantin Khomoutov <flatworm AT users.sourceforge DOT net>
To: Jerome Alet <jerome.alet AT univ-nc DOT nc>
Date: Fri, 4 May 2012 16:29:29 +0400
On Wed, 2 May 2012 11:40:52 +1100
Jerome Alet <jerome.alet AT univ-nc DOT nc> wrote:

[...]
> Attached to this message you'll find the shell script I'm now using.
[...]

The correct way to deal with temporary files in shell scripts is
using mktemp to generate a temporary file with unique name:

BSCRIPT=`mktemp`
trap "rm -f '$BSCRIPT'" TERM INT EXIT
# populate the $BSCRIPT
bconsole -n <"$BCSCRIPT" >/dev/null

or a bit more fancy and robust:

BSCRIPT=`mktemp`
exec 3>$BSCRIPT 4<$BSCRIPT
rm -f $BSCRIPT
cat >&3 <<EOF
# the script goes here
EOF
bconsole -n <&4 >/dev/null

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users

<Prev in Thread] Current Thread [Next in Thread>