Created
December 6, 2016 06:44
-
-
Save MACscr/09a2228a82f5dddf680c1fc960e0b68d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
working_dir="/var/www/media/podcasts/" | |
file1="feed.xml.attempt" | |
file2="feed.xml" | |
generator="feed.php" | |
cd "$working_dir" | |
php "$generator" > "$file1" | |
if [ ! -s "$file2" ] | |
then | |
mv "$file1" "$file2" | |
else | |
echo "$file1" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment