답변:
la
Ubuntus ~/.bashrc
파일에서 몇 개의 다른 파일과 함께 별칭으로 정의됩니다 . 에서 다음 스 니펫에서 볼 수 있듯이 la
단순히ls -A
~/.bashrc
# this alias is defined earlier to grant colored output
alias ls='ls --color=auto'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias li='ls -lF'
Ubuntu's
(코드 포맷없이).
의심스러운 경우 type la
.
배쉬 출력 :
la is aliased to `ls -la'
물고기 출력 :
la is a function with definition
function la --description 'List contents of directory, including hidden files in directory using long format'
ls -lah $argv
end
la
ls -A
다른 답변에서 언급 한 것처럼 의 별칭입니다 . 따라서 쉘 스크립트에서는 사용할 수 없지만 ls
할 수는 있습니다.
컴퓨터에는 여러 개의 별칭 명령이 있습니다. 전체 목록은를 실행하여 얻을 수 있습니다 alias
. 내 컴퓨터에서 다음을 인쇄합니다.
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
--color=auto
STDOUT에 직접 인쇄하지 않으면 색상이 꺼집니다.