정규표현식을 이용한 전체파일 치환

macmac83638의 이미지

요즘 급작스레 C 프로그래밍 하느라 고생이 많습니다.^

다름이 아니라 소스코드내의 특정 문자열을 모두 다른 문자열로 치환하고
싶은데 다음과 같은 형태입니다.

#ifdef A
#ifdef (A)
#if defind A


#ifdef A || B
#if defind A || B

와 같은 방식으로 모조리 변경하고 싶습니다. (즉 B를 추가하고 싶은데..)

파일이 하나가 아니라 특정 디렉토리안의 모든 파일을 변경하고 싶은데
쉽지가 않네요.. 특히 #ifdef A_C 라는 것도 있어서 그냥 하니까.. 저 부분이
또 이상해지고, #ifdef 다음에 공백이 하나인것 부터 시작해서 탭으로
된것까지 다양하게 있어가지고..

도움 부탁드립니다.

nachnine의 이미지


#!/usr/bin/perl
foreach (@ARGV){
	
	@lines = ();
	$filein = $_;
	
	open(i,"<$filein") || die "Can't open $_ ";
	while (!eof(i)) {
		$line = <i>;
		push @lines, $line;
	}
	close(i);
	
	
	$fileout = "$filein.out";	
	
	open(o, ">$fileout");
	foreach(@lines)
	{
		$line = $_;
      if ( $line =~ /^(#ifdef[\t\ ]+|#if[\t\ ]+defind[\t\ ]+)A/ ){
		$line = $1."A || B".$'."\n" 
      }
        
        print o $line; 
    }	
    close(o);
    
}

 

문자열 조작에는 PERL 이 왕이죠 :)

 사실 코드는 

 if ( $line =~ /^(#ifdef[\t\ ]+|#if[\t\ ]+defind[\t\ ]+)A/ ){
		$line = $1."A || B".$'."\n" 
 }

 만 이해하면 됩니다.

ps . 같은 걸 C 로 짰으면 -_-

eseo의 이미지

전 비슷하게 sed 로 짜봤습니다.

vincentius wrote:

다름이 아니라 소스코드내의 특정 문자열을 모두 다른 문자열로 치환하고
싶은데 다음과 같은 형태입니다.

#ifdef A
#ifdef (A)
#if defind A


#ifdef A || B
#if defind A || B

와 같은 방식으로 모조리 변경하고 싶습니다. (즉 B를 추가하고 싶은데..)


sed 를 이용하면 되겠네요.

vincentius wrote:

파일이 하나가 아니라 특정 디렉토리안의 모든 파일을 변경하고 싶은데
쉽지가 않네요..

쉘스크립트를 이용하면 됩니다.

나머지 부분은 무시(?)하고, 나름대로 작성해 보았습니다.

#!/bin/sh
                                                                                
for FILE in `ls`
do
    mv $FILE $FILE.old
    sed "/#if/s/A/A || B/" $FILE.old > $FILE
done


"grep -v $0" 를 이용하여 스크립트 자신의 이름이 변하는것을 방지하고자 했으나, bash 프롬프트에서는 에서는 스크립트의 인수 "$0" 가 "./command"형태로 표현되네요?
csh 프롬프트에서는 의도한대로 "command"로 나옵니다.
bash 에서 스크립트이름은 어떻게 나타낼수 있을까요?

---
배려하는 마음을 갖자.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.