aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-30 01:41:53 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-30 02:09:31 +1200
commit4029cebd2abe02bed49b59052e62097aac2767d3 (patch)
tree2cab2439c5627be3aea1061aafcb8b491f2d0eb7 /bash/bashrc.d
parentUse terser syntax for .d loop sources (diff)
downloaddotfiles-4029cebd2abe02bed49b59052e62097aac2767d3.tar.gz
dotfiles-4029cebd2abe02bed49b59052e62097aac2767d3.zip
Change pa and paz bash funcs to sh scripts
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' "$@"
-}