我有以下带有两个嵌套的foreach循环的Powershell脚本。 该脚本应该从简单的SQL文件中获取内容,为表名添加前缀,并根据前缀/学生名写出新的SQL文件。
$content = Get-Content "[PATH_FILE].sql"
$students = @('18adadam','18bebert','18dadavi')
# $students = Get-Content "[PATH_FILE].txt"
$tables = @('image','post','user')
foreach ($student in $students) {
foreach ($table in $tables) {
$tablename = $student + '_' + $table
'Table name: ' + $tablename
$content = $content.Replace("TABLE ``$table``","TABLE ``$tablename``")
}
$content | Set-Content ("$student.sql")
'Content: '+ $content
}
文件已按预期创建:
内部循环中变量$ tablename的输出很好:
表名:18adadam_image
表名:18adadam_post
表名称:18adadam_user
表名称:18bebert_image
表名:18bebert_post
表名:18bebert_user
表名称:18dadavi_image
表名称:18dadavi_post
表名称:18dadavi_user
但是写入文件(和控制台)的内容仅包含针对第一个学生(18adadam)的更正表:
--
-- Table structure for table `image`
--
CREATE TABLE `18adadam_image` (
`id` int(11) NOT NULL,
`filename` varchar(255) NOT NULL,
`description` text NOT NULL,
`created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`postId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `post`
--
CREATE TABLE `18adadam_post` (
`id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`content` text NOT NULL,
`created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`userId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
最初,行内容替换行如下所示:
$content = $content.Replace("TABLE ``$table``","TABLE ``$student" + "_" + "$table``")
我担心串联会以某种方式拧入内容,因此我将其更改为表名的单个变量。
$tablename = $student + '_' + $table
$content = $content.Replace("TABLE ``$table``","TABLE ``$tablename``")
我添加了
'Table name: ' + $tablename
和
'Content: '+ $content
作为简单的调试行,以查看脚本中每个点的情况。
我还尝试查看将输出更改为单个文件是否会更改任何内容:
$content | Add-Content ("[PATH_FILE]_2.sql")
它所要做的只是按预期为18adadam创建了一个具有正确sql的文件,重复了三遍。
答案 0 :(得分:1)
第二个$content.Replace(
在$ content中更改后找不到原始值。
将更改保存到其他变量。
## Q:\Test\2018\10\11\SO_52758908.ps1
$content = Get-Content ".\template.sql"
$students = @('18adadam','18bebert','18dadavi')
# $students = Get-Content "[PATH_FILE].txt"
$tables = @('image','post','user')
foreach ($student in $students) {
$Newcontent = $content
foreach ($table in $tables) {
$tablename = "{0}_{1}" -f $student,$table
'Table name: ' + $tablename
$Newcontent = $Newcontent.Replace("TABLE ``$table``","TABLE ``$tablename``")
}
$Newcontent | Set-Content ("$student.sql")
'Content: '
$Newcontent
}