Contents

Views 12852 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

유닉스 시스템에서는

    % cp *.c  *.pas

같은 명령어를 사용할 수 없다.

유닉스에서는 메타문자(*, ? 등)가 해당되는 문자로 확장되서 작동되기 때문이다.


유닉스에서 이런 단점을 극복하기 위해서 

    % mmv *.c  .pas 

과 같이 작동하는 쉘스크립트를 작성해보자.


# mmv 코드

#!/usr/bin/csh
# usage : % mmv  *.c  .pas
 
set num=$#argv
set rd=$argv[$num]
echo $rd |set ex=`cut -d. -f2`
set i=1
 
while ($i < $num)
    echo $1 |set name=`cut -d. -f1 `
    set name2=$name'.'$ex
    echo "name2 ="$name2
    mv $1 $name2
    shift
    @ i +=1
end


[참고] https://hooni.net/578


?

  1. [linux] CentOS Apache 웹서버에 HTTPS 적용

    Date2015.10.23 CategoryDevelop Byhooni Views2081
    Read More
  2. [linux] CentOS 에 APM 설치하기

    Date2015.01.02 CategorySystem/OS Byhooni Views2974
    Read More
  3. [linux] CentOS 터미널 언어 설정(한글/영어)

    Date2013.12.22 CategorySystem/OS Byhooni Views19554
    Read More
  4. [linux] crond 사용법.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8270
    Read More
  5. [linux] DHCP(Dynamic Host Configuration Protocol) 서버

    Date2003.04.23 CategorySystem/OS Byhooni Views13738
    Read More
  6. [linux] DNS(Domain Name System) 설치, 설정

    Date2003.04.23 CategorySystem/OS Byhooni Views13236
    Read More
  7. [linux] GD 라이브러리 설치 방법..

    Date2013.04.23 CategorySystem/OS Byhooni Views12359
    Read More
  8. [linux] iconv를 이용하여 euc-kr 문서를 utf-8로 대량으로 변환하기

    Date2014.01.09 CategorySystem/OS Byhooni Views13428
    Read More
  9. [linux] ipchains 사용예(패킷 필터링)

    Date2003.04.23 CategorySystem/OS Byhooni Views15015
    Read More
  10. [linux] ipchains 옵션

    Date2003.04.23 CategorySystem/OS Byhooni Views14445
    Read More
  11. [linux] ipfwadm를 이용한 패킷필터링(구버전)

    Date2003.04.23 CategorySystem/OS Byhooni Views13950
    Read More
  12. [linux] iptables 명령어 매뉴얼(options)

    Date2003.04.23 CategorySystem/OS Byhooni Views12620
    Read More
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 ... 99 Next
/ 99