summaryrefslogtreecommitdiff
path: root/fmt
diff options
context:
space:
mode:
Diffstat (limited to 'fmt')
-rwxr-xr-xfmt/camel4
-rwxr-xr-xfmt/deprefix6
-rwxr-xr-xfmt/desuffix5
-rwxr-xr-xfmt/kebab4
-rwxr-xr-xfmt/mumble5
-rwxr-xr-xfmt/pascal4
-rwxr-xr-xfmt/scream4
-rwxr-xr-xfmt/snake4
-rwxr-xr-xfmt/strip-blank6
-rwxr-xr-xfmt/strip-comments10
-rwxr-xr-xfmt/strip-ownlinecomments10
-rwxr-xr-xfmt/train4
12 files changed, 66 insertions, 0 deletions
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'