summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
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