aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d')
-rw-r--r--bash/bashrc.d/pa.bash5
-rw-r--r--bash/bashrc.d/paz.bash6
2 files changed, 0 insertions, 11 deletions
diff --git a/bash/bashrc.d/pa.bash b/bash/bashrc.d/pa.bash
deleted file mode 100644
index b47189bf..00000000
--- a/bash/bashrc.d/pa.bash
+++ /dev/null
@@ -1,5 +0,0 @@
-# Print arguments, one per line. Compare paz().
-pa() {
- (($#)) || return 0
- printf '%s\n' "$@"
-}
diff --git a/bash/bashrc.d/paz.bash b/bash/bashrc.d/paz.bash
deleted file mode 100644
index 77299dad..00000000
--- a/bash/bashrc.d/paz.bash
+++ /dev/null
@@ -1,6 +0,0 @@
-# Print arguments, null-delimited; you will probably want to write this into a
-# file or as part of a pipeline. Compare pa().
-paz() {
- (($#)) || return 0
- printf '%s\0' "$@"
-}