#!/bin/bash


# 将位于主目录的storage_x文件夹剪贴到根目录下的对应的titanx文件夹，并重命名为storage
for i in {1..5}; do
  mv "$HOME/nana$i" "/titan$i/storage"
done
