如何在以下import语句之后添加一行
import { NgModule } from '@angular/core';
我的代码当前未更改:
sed -i "/\import { NgModule } from '@angular\\/core';\[/ {a\\import { TestModule } from '@angular\\/core';
}" ./target/src/app/app.module.ts
答案 0 :(得分:1)
尝试下面,
sed '/import { NgModule } from '@angular\\/core';/ a import { TestModule } from '@angular\\/core';' ./target/src/app/app.module.ts
我错过了单引号
sed "/import { NgModule } from '@angular\\/core';/ a import { TestModule } from '@angular\\/core';" ./target/src/app/app.module.ts