mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
6 lines
102 B
Bash
6 lines
102 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TOC_TXT=$1
|
||
|
env awk "{if (\$0 ~ /@toc@/){ system(\"cat ${TOC_TXT}\");} else{ print \$0;}}"
|
||
|
|