A shell script template engine for generating HTML markup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

5 lines
164 B

$ VAR1="So <b>many</b> cats!";
<h1><% $VAR1 %></h1>
<h1><!% $VAR1 %></h1>
<h1><$% echo $VAR1 | cut -f 2 -d ' ' %></h1>
<h1><$!% echo $VAR1 | cut -f 2 -d ' ' %></h1>