diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-14 20:47:59 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-14 20:49:51 -0600 |
commit | 09f9bf827be794ccb999728775c0417b82317b27 (patch) | |
tree | ec0f871b21c20eba88f1dd932d0781ec93e6b108 /bin | |
parent | ea66ec9d715288f3709b23e4e230fd25d030601f (diff) |
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cdxget | 6 | ||||
-rwxr-xr-x | bin/fmt-metadata | 7 | ||||
-rwxr-xr-x | bin/gitify | 6 | ||||
-rwxr-xr-x | bin/poolify | 6 | ||||
-rwxr-xr-x | bin/urlkey2url | 6 |
5 files changed, 31 insertions, 0 deletions
@@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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. url='http://web.archive.org/cdx/search/cdx' s='?' diff --git a/bin/fmt-metadata b/bin/fmt-metadata index c92419b..ec82451 100755 --- a/bin/fmt-metadata +++ b/bin/fmt-metadata @@ -1,4 +1,11 @@ #!/usr/bin/env ruby +# Copyright (c) 2017 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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. + require 'time' snapshot = ARGV.first.to_i @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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. empty() { [[ $(stat -c %s "$1") -eq 0 ]] diff --git a/bin/poolify b/bin/poolify index 92e3cce..b49cbd9 100755 --- a/bin/poolify +++ b/bin/poolify @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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. url2murl() { local x diff --git a/bin/urlkey2url b/bin/urlkey2url index 5d0ec3d..813e66f 100755 --- a/bin/urlkey2url +++ b/bin/urlkey2url @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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. for arg in "$@"; do keydomain="${arg%%)*}" |