File: git_touch

package info (click to toggle)
gcl27 2.7.1-12
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 30,844 kB
  • sloc: lisp: 211,942; ansic: 52,944; sh: 9,347; makefile: 647; tcl: 53; awk: 52
file content (15 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

SLEEP=$1

for i in  \
      configure.ac aclocal.m4 gcl-tk/gcltksrv.in bin/gcl.in unixport/init_raw.lsp.in h/gclincl.h.in \
      configure \
      Makefile.am Makefile.in \
      info/gcl.info info/gcl-si.info info/gcl-tk.info info/gcl-dwdoc.info ; do
    touch $i
    if [ "$SLEEP" != "" ] ; then
	echo $i
	sleep $SLEEP
    fi
done