리눅스 설치 ls 명령어 실행 시 날짜가 내가 원하는 형식이 아닙니다.
그래서 저는 연-월-일(예: 2023-01-01) 형식으로 보는 게 익숙해서 아래처럼 수정해서 사용합니다.
$ vi ~/.bashrc
alias 항목에 아래 내용을 추가합니다.
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias ls='ls --color=auto --time-style=long-iso'
alias ll='ls -al'
# alias python=python3
# alias pip=pip3
실행 결과
합계 50524
drwxr-xr-x 66 ilove ilove 4096 2023-08-04 17:08 .
drwxr-xr-x 6 root root 4096 2020-09-03 11:06 ..
-rw------- 1 ilove ilove 27469 2022-03-16 16:42 .bash_history
-rw-r--r-- 1 ilove ilove 220 2020-04-29 00:04 .bash_logout
-rw-r--r-- 1 ilove ilove 4182 2022-12-06 17:57 .bashrc
drwx------ 57 ilove ilove 4096 2023-07-20 13:46 .cache
drwxrwxr-x 3 ilove ilove 4096 2022-12-06 17:57 .cargo
-rw-rw-r-- 1 ilove ilove 74 2022-05-23 17:18 .clang-format
drwxr-xr-x 11 ilove ilove 4096 2023-07-18 17:04 .codelite
-rw-rw-r-- 1 ilove ilove 296 2022-05-26 19:04 .codelite-gdbinit
drwxr-xr-x 9 ilove ilove 4096 2020-07-06 16:54 .codelite_old
drwx------ 3 ilove ilove 4096 2020-04-29 18:41 .compiz
drwx------ 57 ilove ilove 4096 2023-07-18 16:58 .config
drwxrwxr-x 4 ilove ilove 4096 2023-07-19 15:31 data
drwx------ 3 ilove ilove 4096 2020-05-14 17:17 .dbus
drwxr-xr-x 2 ilove ilove 4096 2020-04-29 00:07 Desktop
...
'Linux > Tips&News' 카테고리의 다른 글
Error: listen EACCES: permission denied 0.0.0.0:80 (0) | 2023.09.22 |
---|---|
segmentation fault - core dump 파일이 생성되지 않아요? (0) | 2023.07.11 |
GNU_LIBC_VERSION 확인방법 (0) | 2023.06.28 |
An error occurred during the signature verification (0) | 2023.06.17 |
Ubuntu에서 deb 파일 설치하기 (0) | 2023.05.26 |