8 lines
173 B
Bash
8 lines
173 B
Bash
# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-
|
|
|
|
let start=$(expr $1 + 1)
|
|
let width=$(expr $COLUMNS - $2)
|
|
|
|
for i in {$start..$width}; do
|
|
echo -n \\x2d
|
|
done
|