fork(4) download
  1. I='foo.png'
  2. var1=$(cat <<EOL
  3. ![](../images/${I%.*}.png)
  4. \`\`\`sql
  5. some code here
  6.  
  7. \`\`\`
  8. EOL
  9. )
  10. echo "$var1"
  11.  
Success #stdin #stdout 0s 4524KB
stdin
Standard input is empty
stdout
![](../images/foo.png)
```sql
some code here

```