我正在尝试删除日志文件中的一些特殊行,因此我在嵌入式 linux 系统上使用了 busybox 的 sed。
# sed
BusyBox v1.18.4 (2013-01-16 16:00:18 CST) multi-call binary.
Usage: sed [-efinr] SED_CMD [FILE]...
Options:
-e CMD Add CMD to sed commands to be executed
-f FILE Add FILE contents to sed commands to be executed
-i Edit files in-place (else sends result to stdout)
-n Suppress automatic printing of pattern space
-r Use extended regex syntax
If no -e or -f, the first non-option argument is the sed command string.
Remaining arguments are input files (stdin if none).
在shell下执行以下命令,一切正常:
export MODULE=sshd sed "/$MODULE\[/d" logfile
但如果我尝试使用以下 C 代码来完成此操作:
char logfile[] = "logfile"; char module_str[] = "sshd"; char env_str[64] = {0}; int offset = 0; strcpy(env_str, "MODULE="); offset += strlen("MODULE="); strcpy(env_str + offset, module_str); putenv(env_str); system("sed \"/$MODULE\[/d\" logfile");
执行 a.out 时,我收到错误消息:
sed: unmatched '/'
我的“system()”调用有什么问题?我完全是文本处理的新手,所以任何人都可以给我一些线索吗?谢谢。
最好的问候, dejunl