Subversion Repositories wimsdev

Rev

Rev 3042 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. #! /bin/sh
  2. # Get list of new additions to the site.
  3. # Reads the file modules/Changelog.
  4.  
  5. awk 'BEGIN {a=0}; $2=="added" {print; a++};a>='$w_llimit' {exit}' modules/Changelog
  6.  
  7.