.bash_aliases 파일이 다음 형식의 별칭을 허용할 수 있습니까?alias #='./'
또한 문자를 인용하고 이스케이프 처리를 시도했지만 작동하지 않는 것 같습니다.
답변1
이 작업을 수행:
xb@dnxb:~/tmp$ shopt interactive_comments
interactive_comments on
xb@dnxb:~/tmp$ shopt -u interactive_comments
xb@dnxb:~/tmp$ shopt interactive_comments
interactive_comments off
xb@dnxb:~/tmp$ alias #='ls -la'
xb@dnxb:~/tmp$ # /tmp -d
drwxrwxrwt 14 root root 32768 Nov 2 03:09 /tmp
xb@dnxb:~/tmp$
~/.bash_aliases에서 이스케이프 처리합니다.
shopt -u interactive_comments
alias \#='ls -la'