logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git

length.sh (90B)


  1. #!/bin/sh
  2. for i in $(seq 1 9)
  3. do
  4. printf '%*s\0' "$i" "$i" | tr ' ' '_'
  5. done > "${0%.sh}"