diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-11 13:02:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-11 13:02:08 +0000 |
commit | 7c6a21aedda5a6e918f54053c8a2829a248d536b (patch) | |
tree | 68df72cb2c5c08dc13dc94c32b41894b456ea042 /scripts | |
parent | 72f9229a39f670170d60d0b7ea99635dd352fe54 (diff) | |
download | brdo-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.sh | 2 | ||||
-rw-r--r-- | scripts/cron-curl.sh | 2 | ||||
-rw-r--r-- | scripts/cron-lynx.sh | 2 | ||||
-rw-r--r-- | scripts/prefix.sh | 1 |
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 |