One Liner Designs.

"dave leonard [email protected] [sed-users]" <[email protected]> Fri, 8 Sep 2017 15:20:41 +0000 (UTC)
Newsgroups gmane.editors.sed.user
Message-ID <[email protected]>
Hello,
Below are 4 one liners which when executed produce simple star designs.
1) echo  "*" | sed  ':a  p;  s/.\{15\}//;  s/$/*/;  ba; '

2) echo  "*" | sed  ':a  s/^$/***************/;   p;  s/.$//;  ba;'

3) echo   "***************"    |  sed ':a  p;  s/\*/ /;   /^ *$/s/ /*/g;  ba;'

4) echo   "***************"    |  sed ':a  p;  /^\**$/s/./ /g;  s/^\( *\) /\1*/;  ba;' 

ThanksDave

[Non-text portions of this message have been removed]