forked from OpenSees/OpenSees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakeCore.tcl
37 lines (26 loc) · 800 Bytes
/
makeCore.tcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
set currentDir [pwd]
set openSeesDir "$currentDir/.."
set coreDir "$currentDir/core"
set coreList "$currentDir/coreList";
# procedure to go through the directories and clean out stuff
proc copyIt {openSeesDir fileName coreDir} {
set dirFile $openSeesDir
set dirFile [file join $dirFile $fileName]
file copy -force $dirFile $coreDir
}
proc makeCore {openSeesDir coreList coreDir} {
file mkdir $coreDir
set pwd [pwd]
set pwd [file join $pwd "core"]
set inFileID [open $coreList r]
foreach line [split [read $inFileID] \n] {
if {[llength $line] == 0} {
# Blank line --> do nothing
continue
} else {
copyIt $openSeesDir $line $coreDir
}
}
puts "DONE copying files from $coreList to $coreDir"
}
makeCore $openSeesDir $coreList $coreDir