diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-12 19:26:50 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-12 19:26:50 -0400 |
commit | 1de371eeaa58ab36b9c0ff349efa81037a40817a (patch) | |
tree | 97c5e507e9390f0cdd6a9522bd68d9109ea5a400 | |
parent | 272f57b2a4d9f2c8d5ac3c46962f25c55dfbb270 (diff) |
Specify that this is under the WTFPL
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | COPYING | 14 | ||||
-rw-r--r-- | jh-checksource.sh | 4 | ||||
-rw-r--r-- | jh-help.sh | 4 | ||||
-rw-r--r-- | jh-list-commands.sh | 4 | ||||
-rw-r--r-- | jh-mvn-basename.sh | 4 | ||||
-rw-r--r-- | jh-mvn-install.sh | 4 | ||||
-rw-r--r-- | jh-mvn-localrepo.sh | 4 | ||||
-rw-r--r-- | jh.sh | 4 |
9 files changed, 43 insertions, 0 deletions
@@ -1,3 +1,4 @@ * +!COPYING !Makefile !*.* @@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+
diff --git a/jh-checksource.sh b/jh-checksource.sh index 2120493..23c3ada 100644 --- a/jh-checksource.sh +++ b/jh-checksource.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. sep='<no-filename-ever-contains-this>' @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. stem=jh diff --git a/jh-list-commands.sh b/jh-list-commands.sh index 66ce5aa..a099fae 100644 --- a/jh-list-commands.sh +++ b/jh-list-commands.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. if [[ $# > 0 ]]; then jh-help $0 >>/dev/stderr diff --git a/jh-mvn-basename.sh b/jh-mvn-basename.sh index eff78aa..5a16944 100644 --- a/jh-mvn-basename.sh +++ b/jh-mvn-basename.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. if [[ $# != 3 ]]; then jh-help $0 >>/dev/stderr diff --git a/jh-mvn-install.sh b/jh-mvn-install.sh index 41aefcc..c33e097 100644 --- a/jh-mvn-install.sh +++ b/jh-mvn-install.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. if [[ $# != 5 ]]; then jh-help $0 >>/dev/stderr diff --git a/jh-mvn-localrepo.sh b/jh-mvn-localrepo.sh index e74e7a9..b01ed93 100644 --- a/jh-mvn-localrepo.sh +++ b/jh-mvn-localrepo.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. if [[ $# > 0 ]]; then jh-help $0 >>/dev/stderr @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# This work is free. You can redistribute it and/or modify it under the +# terms of the Do What The Fuck You Want To Public License, Version 2, +# as published by Sam Hocevar. See the COPYING file for more details. if [[ -z $JH_PATH ]]; then export JH_PATH=/usr/share/jh |