多个文件平铺一个里面的shell脚本
时间: 2023-11-30 08:39:46 浏览: 148
world_clock:简单的世界时钟 bash 脚本。 用于平铺窗口管理器
您可以使用以下Shell脚本将多个文件的内容平铺到一个文件中:
```bash
#!/bin/bash
# 要平铺的文件夹路径
folder_path="/path/to/folder"
# 输出文件路径
output_file="/path/to/output.txt"
# 清空输出文件
> "$output_file"
# 遍历文件夹中的每个文件
for file in "$folder_path"/*
do
# 检查文件是否是普通文件
if [ -f "$file" ]; then
# 将文件内容追加到输出文件中
cat "$file" >> "$output_file"
fi
done
```
请将`/path/to/folder`替换为要平铺文件的文件夹的路径,将`/path/to/output.txt`替换为输出文件的路径。运行上述脚本后,所有文件的内容将被平铺到指定的输出文件中。
阅读全文