aboutsummaryrefslogtreecommitdiff
path: root/bin/bl.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-01-15 12:24:02 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-01-15 12:24:02 +1300
commit4da77a00838beb51d6ccfc2a3352a76ddddd74cc (patch)
treef543172c845a42305ae4fc75744d9a7c09688f7d /bin/bl.sh
parentMerge branch 'feature/ax-safety' into develop (diff)
parentRefactor clog(1df), allow args and non-term stdin (diff)
downloaddotfiles-4da77a00838beb51d6ccfc2a3352a76ddddd74cc.tar.gz
dotfiles-4da77a00838beb51d6ccfc2a3352a76ddddd74cc.zip
Merge branch 'feature/bin-review' into develop
* feature/bin-review: Refactor clog(1df), allow args and non-term stdin Reimplement bl(1df) in Awk
Diffstat (limited to 'bin/bl.sh')
-rw-r--r--bin/bl.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/bl.sh b/bin/bl.sh
deleted file mode 100644
index 6dd3d687..00000000
--- a/bin/bl.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-# Generate blank lines
-if [ "$#" -ne 1 ] || [ "$1" -lt 0 ] ; then
- printf >&2 'bl: Non-negative line count needed as sole argument\n'
- exit 2
-fi
-n=0
-while [ "$n" -lt "${1:-0}" ] ; do
- printf '\n'
- n=$((n+1))
-done