我制作了一个 bash 脚本,它可以tree
递归地构建整个目录结构,在每个目录中放入一个由aha
. 该脚本读取要索引的目录列表。find
搜索目录中的每个目录并生成完整的目录列表。如果目录/media/veracrypt1
在层次结构中包含 50 个目录,tree
则将给定目录和“下”中的所有内容创建一个树,在目录中写入带有记录的树结构的 HTML 文件,然后向下,重复该动作到底部。
我希望脚本在定义的时间由cron
. 该脚本有效,但着色无效,并且管道的输出为白底黑字。我相信这是cron
无法访问LS_COLOR
系统变量的结果。(这是我怀疑的)
如何更正脚本以使其产生预期的效果?
脚本的重要片段:
tree -axC "$file" | aha --title $(basename "${file// /_}") > "$file"/[z9][tree]_$(basename "${file// /_}").html; done
它也可以在没有aha
:
tree -axC "$file" > "$file"/[z9][tree]_$(basename "${file// /_}").html; done
但是着色(仅在 cron 中)存在相同的问题。
完整脚本的文本:
#!/bin/bash
List_make_R_general=/track/to/location_1.txt
List_R_gen_general=/track/to/location_2.txt
cron_log=/track/to/location_3.txt
echo > $cron_log
cat "$List_make_R_general" | while read file; do find "$file" -type d; done | tee "$List_R_gen_general"
cat "$List_R_gen_general" | while read file; do tree -axC "$file" | aha --title $(basename "${file// /_}") > "$file"/[z9][tree]_$(basename "${file// /_}").html; done
cat "$List_R_gen_general" | while read file; do tree -axC "$file" -I "*.JPG" | aha --title $(basename "${file// /_}") > "$file"/[z9][tree]_$(basename "${file// /_}")_[excl].html; done
echo -e "Tree done successfully: $(date) \n" >> $cron_log
exit
我最近遇到了类似的问题
htop
,您需要TERM=xterm
在脚本中进行设置:除了使用
export
,您还可以tree
直接为每次调用设置变量:该
TERM
变量告诉tree
您正在使用哪种类型的终端。在这种情况下,重要的1可能是文本窗口显示颜色的能力:xterm
由 8 种颜色构成,而例如xterm-256color
——你猜对了——由 256 种颜色构成。您可以使用 获取系统的可能值列表,ls -1 /lib/terminfo/x
并查看和比较它们的功能infocmp
,例如1如评论中所述,
tree
实际上只是测试TERM
设置为任何内容,因此TERM=my_precious tree
也可以。不过,给它一个有效值似乎是个好主意。进一步阅读:
man infocmp
和man 5 terminfo