Find and Remove Broken Symbolic Links

 find -L ${directory} -type l 
 # remove the broken links
 find -L ${directory} -type l -print0 | xargs -0 rm

s3cmd

a: 2010-06-17 t: s3cmd css

# does not seem to auto-detect file type w/o prompting
s3cmd put --guess-mime-type --acl-public *.css s3://your-bucket/your-dir/

Leave a Reply