summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-08-11 13:02:08 +0000
committerDries Buytaert <dries@buytaert.net>2005-08-11 13:02:08 +0000
commit7c6a21aedda5a6e918f54053c8a2829a248d536b (patch)
tree68df72cb2c5c08dc13dc94c32b41894b456ea042 /scripts
parent72f9229a39f670170d60d0b7ea99635dd352fe54 (diff)
downloadbrdo-7c6a21aedda5a6e918f54053c8a2829a248d536b.tar.gz
brdo-7c6a21aedda5a6e918f54053c8a2829a248d536b.tar.bz2
- Patch by Uwe: tidied up the CVS IDs.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-clean.sh2
-rw-r--r--scripts/cron-curl.sh2
-rw-r--r--scripts/cron-lynx.sh2
-rw-r--r--scripts/prefix.sh1
4 files changed, 7 insertions, 0 deletions
diff --git a/scripts/code-clean.sh b/scripts/code-clean.sh
index 3567d49db..19a15ad9a 100644
--- a/scripts/code-clean.sh
+++ b/scripts/code-clean.sh
@@ -1,4 +1,6 @@
#!/bin/sh
+# $Id$
+
find . -name "*~" -type f | xargs rm -f
find . -name ".#*" -type f | xargs rm -f
find . -name "*.rej" -type f | xargs rm -f
diff --git a/scripts/cron-curl.sh b/scripts/cron-curl.sh
index 73e3ef45b..6b20a516d 100644
--- a/scripts/cron-curl.sh
+++ b/scripts/cron-curl.sh
@@ -1,2 +1,4 @@
#!/bin/sh
+# $Id$
+
curl --silent --compressed http://yoursite.com/cron.php
diff --git a/scripts/cron-lynx.sh b/scripts/cron-lynx.sh
index 84e9e8fbb..44dd06c2a 100644
--- a/scripts/cron-lynx.sh
+++ b/scripts/cron-lynx.sh
@@ -1,2 +1,4 @@
#!/bin/sh
+# $Id$
+
/usr/bin/lynx -source http://yoursite.com/cron.php > /dev/null 2>&1
diff --git a/scripts/prefix.sh b/scripts/prefix.sh
index c7e646ed9..bc5fa9631 100644
--- a/scripts/prefix.sh
+++ b/scripts/prefix.sh
@@ -1,4 +1,5 @@
#!/bin/sh
+# $Id$
if [ $# != 2 ]; then
cat >&2 << EOH