From 649bbc601edeb1ff405434bfd7c238e819c12943 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 4 May 2015 16:14:27 -0400 Subject: Add copyright years to each file. --- Makefile | 1 + batterymon.sh | 1 + chardiff.sh | 1 + chardiff_post.c | 1 + chardiff_pre.c | 1 + daemon.sh | 1 + hangman-helper.sh | 2 ++ maildups.sh | 2 ++ offlineimap-killer.sh | 2 ++ offlineimap-runner.sh | 2 ++ ord.c | 1 + roll.go | 1 + tempmon.sh | 1 + urldecode.php | 1 + urlencode.php | 1 + v-editor.sh | 1 + v-www-browser.sh | 1 + 17 files changed, 21 insertions(+) diff --git a/Makefile b/Makefile index 7c28090..06912e2 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +# Copyright (C) 2011, 2013-2014 Luke Shumaker prefix ?= /usr/local bindir ?= $(prefix)/bin diff --git a/batterymon.sh b/batterymon.sh index f46c6ed..f46060c 100644 --- a/batterymon.sh +++ b/batterymon.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011, 2013 Luke Shumaker if [[ $# -ne 2 ]]; then echo "Usage: $0 THRESHOLD COMMAND" diff --git a/chardiff.sh b/chardiff.sh index 971f24c..6d629d2 100644 --- a/chardiff.sh +++ b/chardiff.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011-2014 Luke Shumaker # Basically run getopt(1) with arguments that reflect wdiff(1)'s usage # Except for -d|--diff-input, chardiff doesn't support that. diff --git a/chardiff_post.c b/chardiff_post.c index 8abc3f7..9aa1790 100644 --- a/chardiff_post.c +++ b/chardiff_post.c @@ -1,3 +1,4 @@ +/* Copyright (C) 2011-2014 Luke Shumaker */ #include int diff --git a/chardiff_pre.c b/chardiff_pre.c index 6b682bf..9b334e1 100644 --- a/chardiff_pre.c +++ b/chardiff_pre.c @@ -1,3 +1,4 @@ +/* Copyright (C) 2011, 2013-2014 Luke Shumaker */ #include int diff --git a/daemon.sh b/daemon.sh index a1ba863..ff95f8f 100644 --- a/daemon.sh +++ b/daemon.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011, 2013-2014 Luke Shumaker get_ident() { local pid=$1 diff --git a/hangman-helper.sh b/hangman-helper.sh index 4051a35..1e65969 100644 --- a/hangman-helper.sh +++ b/hangman-helper.sh @@ -1,4 +1,6 @@ #!/bin/bash +# Copyright (C) 2011, 2013-2014 Luke Shumaker + # Usage: hangman-helper word not [-l] # is the known word, with unknown characters replaced with '.'. # is a sequence of the characters that are known to not be in the word. diff --git a/maildups.sh b/maildups.sh index 2534ff9..2d1180c 100644 --- a/maildups.sh +++ b/maildups.sh @@ -1,4 +1,6 @@ #!/bin/bash +# Copyright (C) 2011, 2013 Luke Shumaker + # Delete duplicate messages in $1 based on the Message-ID header maildir=$1 diff --git a/offlineimap-killer.sh b/offlineimap-killer.sh index 7b88b2f..c0cebd7 100644 --- a/offlineimap-killer.sh +++ b/offlineimap-killer.sh @@ -1,4 +1,6 @@ #!/bin/bash +# Copyright (C) 2014-2015 Luke Shumaker + # Usage: offlineimap-killer LIMIT # # Kills any instance of offlineimap that has been running longer than diff --git a/offlineimap-runner.sh b/offlineimap-runner.sh index 440b2bf..c22e776 100644 --- a/offlineimap-runner.sh +++ b/offlineimap-runner.sh @@ -1,4 +1,6 @@ #!/bin/bash +# Copyright (C) 2013-2014 Luke Shumaker + # Run offline imap, but "parse" the output to generate a sane exit status output_file="$(mktemp --tmpdir "${0##*/}.XXXXXXXXXX")" diff --git a/ord.c b/ord.c index 4de4efe..6445d3f 100644 --- a/ord.c +++ b/ord.c @@ -1,3 +1,4 @@ +/* Copyright (C) 2011, 2013-2014 Luke Shumaker */ #include int diff --git a/roll.go b/roll.go index c6095d9..f5f9b67 100644 --- a/roll.go +++ b/roll.go @@ -1,3 +1,4 @@ +/* Copyright (C) 2011, 2013-2014 Luke Shumaker */ package main import ( diff --git a/tempmon.sh b/tempmon.sh index 3e752be..feb9d80 100644 --- a/tempmon.sh +++ b/tempmon.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011, 2013 Luke Shumaker if [[ $# -ne 2 ]]; then echo "Usage: $0 THRESHOLD COMMAND" diff --git a/urldecode.php b/urldecode.php index 3ebdcc2..5d88b9b 100644 --- a/urldecode.php +++ b/urldecode.php @@ -1,5 +1,6 @@ #!/usr/bin/php -n $contents = file_get_contents('php://stdin'); echo urldecode($contents); diff --git a/urlencode.php b/urlencode.php index 53ffec8..c40263d 100644 --- a/urlencode.php +++ b/urlencode.php @@ -1,5 +1,6 @@ #!/usr/bin/php -n $contents = file_get_contents('php://stdin'); echo urlencode($contents); diff --git a/v-editor.sh b/v-editor.sh index 7a4e050..568f8f1 100644 --- a/v-editor.sh +++ b/v-editor.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011-2015 Luke Shumaker run() { local prog="$1"; shift diff --git a/v-www-browser.sh b/v-www-browser.sh index e5ea481..bbf6ab5 100644 --- a/v-www-browser.sh +++ b/v-www-browser.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (C) 2011, 2013 Luke Shumaker if [ -n "$DISPLAY" ]; then x-www-browser "$@" -- cgit v1.2.3