English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Linux unalias 명령어는 알리어스를 제거하는 데 사용됩니다.
unalias는 shell 내장 명령어로, 알리어스 설정을 제거할 수 있습니다.
unalias [-a][알리어스]
파라미터:
명령어에 알리어스 설정하기
[[email protected] ~]# alias lx=ls [[email protected] ~]# lx anaconda-ks.cfg Desktop install.log install.log.syslog qte
알리어스 제거
[[email protected] ~]# alias lx //알리어스 표시 alias lx='ls' [[email protected] ~]# unalias lx //알리어스 제거 [[email protected] ~]# lx -bash: lx: 명령어가 없음