9 lines
173 B
Text
9 lines
173 B
Text
|
# -*- 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
|