(새 문서: <source lang='console'> # ll -bash: ll: command not found </source> {{소스헤더|CentOS}} <source lang='bash'> echo "alias ll='ls -alF'" >> ~/.bashrc source ~/.bashrc </source> {{...) |
|||
4번째 줄: | 4번째 줄: | ||
</source> | </source> | ||
{{소스헤더|CentOS}} | {{소스헤더|CentOS, Debian}} | ||
<source lang='bash'> | <source lang='bash'> | ||
echo "alias ll='ls -alF'" >> ~/.bashrc | echo "alias ll='ls -alF'" >> ~/.bashrc | ||
10번째 줄: | 10번째 줄: | ||
</source> | </source> | ||
{{소스헤더| | {{소스헤더|Ubuntu}} | ||
<source lang='bash'> | <source lang='bash'> | ||
echo "alias ll='ls -alF'" >> ~/.bash_aliases | echo "alias ll='ls -alF'" >> ~/.bash_aliases | ||
source ~/.bashrc | source ~/.bashrc | ||
</source> | </source> |
2019년 3월 20일 (수) 10:36 판
Console
Copy
# ll
-bash: ll: command not found
CentOS, Debian
Bash
Copy
echo "alias ll='ls -alF'" >> ~/.bashrc
source ~/.bashrc
Ubuntu
Bash
Copy
echo "alias ll='ls -alF'" >> ~/.bash_aliases
source ~/.bashrc
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.