yearly.functions 282 B

123456789101112
  1. # -*- mode:sh -*-
  2. function removalsarchive() {
  3. cd ${webdir}
  4. for ending in txt 822; do
  5. mv removals.${ending} removals-${LASTYEAR}.${ending}
  6. touch removals.${ending}
  7. chmod g+w removals.${ending}
  8. chown dak:ftpteam removals.${ending}
  9. done
  10. }