aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/clwr.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/clwr.bash')
-rw-r--r--bash/bashrc.d/clwr.bash8
1 files changed, 0 insertions, 8 deletions
diff --git a/bash/bashrc.d/clwr.bash b/bash/bashrc.d/clwr.bash
deleted file mode 100644
index 455484d9..00000000
--- a/bash/bashrc.d/clwr.bash
+++ /dev/null
@@ -1,8 +0,0 @@
-# Clear screen, accept line, write to all args, loop; use this as e.g. an input
-# tmux window for a minimal IRC client like ii(1). Uses read -e to allow
-# newlines.
-clwr() {
- while { clear && IFS= read -er line ; } ; do
- printf '%s\n' "$line"
- done
-}