source: draft-ietf-httpbis/latest/dodraft @ 65

Last change on this file since 65 was 44, checked in by fielding@…, 15 years ago

set executable

  • Property svn:executable set to *
File size: 427 bytes
Line 
1#!/bin/tcsh
2
3set num = $argv[1]
4
5if ( $num == "" ) then
6   echo "must specify draft number as first argument"
7   exit 1
8endif
9
10# foreach i ( p1-messaging p2-semantics p3-payload p4-conditional p5-range p6-cache p7-auth p8-cookies )
11
12foreach i ( p1-messaging p2-semantics p3-payload p4-conditional p5-range p6-cache p7-auth )
13  cp -p $i.redxml draft-ietf-httpbis-$i-$num.xml
14  cp -p $i.txt    draft-ietf-httpbis-$i-$num.txt
15end
Note: See TracBrowser for help on using the repository browser.