- 论坛徽章:
- 13
|
本帖最后由 karma303 于 2016-08-23 21:50 编辑
楼主你好,借你的帖子一用。
下面是我所理解的你的意思:
1,你只是想把first目录下的一部分目录按照subxxxx重命名,而不是所有。否则subject.txt就是多余的。
2,你的 result.txt 似乎是多余的。
以下是lua shell的解决方式。
$` tree ./home
./home
└── yeoman
├── first
│ ├── afjldajflfda
│ │ └── a.nii
│ ├── askajdf
│ │ └── a.nii
│ └── qwwerwe
│ └── a.nii
└── second
6 directories, 3 files
$` cat ./subject.txt
afjldajflfda
askajdf
qwwerwe
$` cat ./mvdir.lua
- #!/bin/lsh
- file = io.open("subject.txt", "r")
- local i = 0
- for dirname in file:lines() do
- local newname = string.format("sub%04d", i)
- `mv home/yeoman/first/$(dirname) home/yeoman/second/$(newname)
- i = i + 1
- end
复制代码
$` ./mvdir.lua
$` tree home
home
└── yeoman
├── first
└── second
├── sub0000
│ └── a.nii
├── sub0001
│ └── a.nii
└── sub0002
└── a.nii
6 directories, 3 files
|
|