간단히 말해서:
$ alias search=grep
$ search
search: Command not found.
$ alias search='grep'
$ search
search: Command not found.
$ alias search="grep"
$ search
search: Command not found.
왜 alias
작동하지 않나요?
또한 별칭을 추가하고 source
다음 파일에서 실행했지만 동일한 오류가 발생합니다.
~/.bashrc
~/.bash_profile
~/.profile
예를 들어, 이것이 내 것이라면 ~/.bashrc
:
alias wtf='git'
alias foo="ls"
alias search=grep
새 터미널을 열었 source ~/.bashrc
지만 여전히 다음과 같은 메시지가 표시됩니다.
$ foo
foo: Command not found.
$ wtf
wtf: Command not found.
$ search
search: Command not found.
저는 이 컴퓨터의 루트가 아니며(Cent OS 6.8, 관련성이 있는지 확실하지 않음) 실행하면 alias
모든 사용자의 별칭이 표시됩니다. 내 사용자에 대한 별칭을 만들 수는 없나요?
답변1
문제는 내 컴퓨터의 기본 쉘이tsch
.
실행하여 echo $SHELL
사용 중인 쉘을 확인하십시오. tsch
또는 인 경우 해당 기호를 사용하여 별칭을 할당 csh
하지 않습니다 .=
예를 들면 다음과 같습니다 tsch
.
$ alias foo="ls"
$ foo
foo: Command not found.
하지만:
$ alias bar ls
$ bar
<works and lists folder contents>
기본 셸을 로 변경하려면 bash
다음을 실행하세요.
$ chsh -s /bin/bash
별칭과의 일관성을 유지 하려면 파일을 tcsh
생성해야 합니다 ~/.tcshrc
.