#!/bin/bash

# 切换到根目录
cd /

# 删除每个titan文件夹内的storage子文件夹
for i in {1..5}; do
  rm -r "/titan$i/storage"
done

