in reply to problem in a small script
Think you mean to use backticks in several places...
my $next_backup_file = "daily-incremental-backup." . 'date +%Y%m%d'; should be ... my $next_backup_file = "daily-incremental-backup." . `date +%Y%m%d`;
and
my $youngest = "svnlook youngest $svn_repos"; should be.... my $youngest = `svnlook youngest $svn_repos`;
Not sure what you are trying to accomplish with this line of code, but it probably is mean to be backticked also.
print 'gzip -9 $backups_dir/$next_backup_file'; should be print `gzip -9 $backups_dir/$next_backup_file`;
Several other places that are commented also look like they are meant to be backticked.
Scott
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: problem in a small script
by serf (Chaplain) on Jan 16, 2006 at 00:26 UTC |