From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- fmt/camel | 4 ++++ fmt/deprefix | 6 ++++++ fmt/desuffix | 5 +++++ fmt/kebab | 4 ++++ fmt/mumble | 5 +++++ fmt/pascal | 4 ++++ fmt/scream | 4 ++++ fmt/snake | 4 ++++ fmt/strip-blank | 6 ++++++ fmt/strip-comments | 10 ++++++++++ fmt/strip-ownlinecomments | 10 ++++++++++ fmt/train | 4 ++++ 12 files changed, 66 insertions(+) create mode 100755 fmt/camel create mode 100755 fmt/deprefix create mode 100755 fmt/desuffix create mode 100755 fmt/kebab create mode 100755 fmt/mumble create mode 100755 fmt/pascal create mode 100755 fmt/scream create mode 100755 fmt/snake create mode 100755 fmt/strip-blank create mode 100755 fmt/strip-comments create mode 100755 fmt/strip-ownlinecomments create mode 100755 fmt/train (limited to 'fmt') diff --git a/fmt/camel b/fmt/camel new file mode 100755 index 0000000..bd24981 --- /dev/null +++ b/fmt/camel @@ -0,0 +1,4 @@ +#!/bin/sh +# camel: convertAStringIntoCamelCase + +# TODO. diff --git a/fmt/deprefix b/fmt/deprefix new file mode 100755 index 0000000..da51657 --- /dev/null +++ b/fmt/deprefix @@ -0,0 +1,6 @@ +#!/bin/sh +# deprefix +# Remove the prefix from all files in the directory which have the prefix. +# deprefix "pref-" + +for i in "$1"*;do mv "$i" "${i#"$1"}";done diff --git a/fmt/desuffix b/fmt/desuffix new file mode 100755 index 0000000..fc0a511 --- /dev/null +++ b/fmt/desuffix @@ -0,0 +1,5 @@ +#!/bin/sh +# desuffix +# Remove all suffixes. + +rename --no-overwrite -- "$1" "" * diff --git a/fmt/kebab b/fmt/kebab new file mode 100755 index 0000000..c9bbc66 --- /dev/null +++ b/fmt/kebab @@ -0,0 +1,4 @@ +#!/bin/sh +# kebab: convert-a-string-into-kebab-case + +echo "$1" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9-]//g' diff --git a/fmt/mumble b/fmt/mumble new file mode 100755 index 0000000..f5494fc --- /dev/null +++ b/fmt/mumble @@ -0,0 +1,5 @@ +#!/bin/sh +# mumble: convertastringintomumblecase +# snake: convert_a_string_into_snake_case + +echo "$1" | tr -d ' ' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9]//g' diff --git a/fmt/pascal b/fmt/pascal new file mode 100755 index 0000000..1e5e656 --- /dev/null +++ b/fmt/pascal @@ -0,0 +1,4 @@ +#!/bin/sh +# pascal: ConvertAStringIntoPascalCase + +# TODO. diff --git a/fmt/scream b/fmt/scream new file mode 100755 index 0000000..4836167 --- /dev/null +++ b/fmt/scream @@ -0,0 +1,4 @@ +#!/bin/sh +# scream: CONVERT_A_STRING_INTO_SCREAM_CASE + +echo "$1" | tr ' ' '_' | tr '[:lower:]' '[:upper:]' | sed 's/[^a-zA-Z0-9_]//g' diff --git a/fmt/snake b/fmt/snake new file mode 100755 index 0000000..e33b678 --- /dev/null +++ b/fmt/snake @@ -0,0 +1,4 @@ +#!/bin/sh +# snake: convert_a_string_into_snake_case + +echo "$1" | tr ' ' '_' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9_]//g' diff --git a/fmt/strip-blank b/fmt/strip-blank new file mode 100755 index 0000000..2be9030 --- /dev/null +++ b/fmt/strip-blank @@ -0,0 +1,6 @@ +#!/bin/sh +# Strip blank lines, including lines which only have whitespace. + +[ $# -ge 1 -a -f "$1" ] && in="$1" || in="-" + +grep -v '^[[:blank:]]*$' "$in" diff --git a/fmt/strip-comments b/fmt/strip-comments new file mode 100755 index 0000000..2e3a356 --- /dev/null +++ b/fmt/strip-comments @@ -0,0 +1,10 @@ +#!/bin/sh + +# Strip all comments '#' from a file, including on individual lines and in +# lines, not taking escaping due to, e.g. strings into account. +# Use as: cat filename | strip-comments, +# or as strip-comments filename + +[ $# -ge 1 -a -f "$1" ] && in="$1" || in="-" + +sed '/^[[:blank:]]*#/d;s/#.*//' "$in" diff --git a/fmt/strip-ownlinecomments b/fmt/strip-ownlinecomments new file mode 100755 index 0000000..0ed3709 --- /dev/null +++ b/fmt/strip-ownlinecomments @@ -0,0 +1,10 @@ +#!/bin/sh + +# Strip all comments '#' from a file, including on individual lines and in +# lines, not taking escaping due to, e.g. strings into account. +# Use as: cat filename | strip-comments, +# or as strip-comments filename + +[ $# -ge 1 -a -f "$1" ] && in="$1" || in="-" + +sed '/^[[:blank:]]*#/d' "$in" diff --git a/fmt/train b/fmt/train new file mode 100755 index 0000000..b419707 --- /dev/null +++ b/fmt/train @@ -0,0 +1,4 @@ +#!/bin/sh +# train: CONVERT-A-STRING-INTO-TRAIN-CASE + +echo "$1" | tr ' ' '-' | tr '[:lower:]' '[:upper:]' | sed 's/[^a-zA-Z0-9-]//g' -- cgit v1.2.1