Subversion Repositories wimsdev

Rev

Rev 3042 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 reyssat 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