Linux 셸 에서 연산 자"="과"-eq"를 비교 합 니 다.
bash 매 뉴 얼 에서 알파벳 연산 자 와 기호 연산 자의 양 끝 에 있 는 매개 변 수 는 영어 표현 식 이 다 르 고 기호 연산 자 는 string 을 사용 하 며 알파벳 연산 자 는 arg 를 사용 합 니 다.
# http://www.gnu.org/software/bash/manual/bashref.html
string1==string2
string1=string2
test
command for POSIX conformance. string1!=string2
string1<string2
string1>string2
arg1OParg2
OP
is one of ‘-eq’, ‘-ne’, ‘-lt’, ‘-le’, ‘-gt’, or ‘-ge’. These arithmetic binary operators return true ifarg1is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal toarg2, respectively.Arg1andarg2may be positive or negative integers. 실제 프로 그래 밍 에서 알파벳 연산 자 를 사용 하면 기호 연산 자 와 효과 가 같 지만 오류 알림 이 발생 합 니 다."[arg 2:syntax error:operand expected(error token is"arg 2")"
원문 대로
[[ "$1" -eq "" ]] && echo "delete all spaces and comments of specialized file, using with $@ filename" && exit 1
으로 변경
[[ "$1" == "" ]] && echo "delete all spaces and comments of specialized file, using with $@ filename" && exit 1
더 이상 힌트 안 드릴 게 요.
실 용적 인 스 크 립 트 를 추가 합 니 다.용도:grep 에서 빈 칸 과 주석 자(\#)를 제거 하고 간단 하고 실 용적 입 니 다.
#!/bin/bash
# delete all spaces and comments of specialized file, using with $@ filename
[[ "$1" == "" ] && echo "delete all spaces and comments of specialized file, using with $@ filename" && exit 1
grep -v \# $1 | grep -v ^$
운영 체제 에 추가:
cat > delsc.sh << eof
#!/bin/bash
# delete all spaces and comments of specialized file, using with $@ filename
[[ "\$1" -== "" ]] && echo "delete all spaces and comments of specialized file, using with \$@ filename" && exit 1
grep -v \# \$1 | grep -v ^$
eof
chmod +x ./delsc.sh
\mv delsc.sh /usr/local/bin/delsc
which delsc
cat /usr/local/bin/delsc
사용법:
delsc filename
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
js 배열 조작 방법 총화텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.