Shell 脚本将表格写入 Markdown 文件
以下是一个示例的 Shell 脚本,用于将表格内容写入 Markdown 文件:
#!/bin/bash
# 表格内容
table_content='| Name | Age | Occupation |
|------|-----|------------|
| John | 25 | Engineer |
| Mary | 30 | Teacher |
| Bob | 35 | Doctor |'
# Markdown文件路径
md_file='output.md'
# 写入表格内容到Markdown文件
echo '$table_content' > '$md_file'
echo '表格已写入到 $md_file 文件中。'
将上述脚本保存为write_table_to_md.sh文件,并赋予执行权限:
chmod +x write_table_to_md.sh
然后运行脚本:
./write_table_to_md.sh
脚本会将表格内容写入output.md文件中,并在控制台输出提示信息。你可以根据需要修改表格内容和输出的 Markdown 文件路径。
原文地址: https://www.cveoy.top/t/topic/qdVE 著作权归作者所有。请勿转载和采集!