diff options
author | 2023-02-24 16:27:18 +0100 | |
---|---|---|
committer | 2023-02-24 16:27:18 +0100 | |
commit | 0873e1f108c1e3122a854778df73c221b9609cf9 (patch) | |
tree | 5e34e96419d5fb6a16ad1f6021d1802985414d6d | |
parent | 5522f39034b45f8188f535bf38cb3e3f30cac072 (diff) | |
download | acme-scripts-0873e1f108c1e3122a854778df73c221b9609cf9.tar.gz acme-scripts-0873e1f108c1e3122a854778df73c221b9609cf9.zip |
Move margin.sh to marg.sh
-rwxr-xr-x | marg.sh | 9 | ||||
-rwxr-xr-x | margin.sh | 3 |
2 files changed, 9 insertions, 3 deletions
@@ -0,0 +1,9 @@ +#!/bin/sh + +if [ -z $1 ]; then + M=80 +else + M=$1 +fi + +printf '%'$M's' "|" diff --git a/margin.sh b/margin.sh deleted file mode 100755 index de869a6..0000000 --- a/margin.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -printf "%120s" "|" |