English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux unalias 명령어

Linux 명령어大全

Linux unalias 명령어는 알리어스를 제거하는 데 사용됩니다.

unalias는 shell 내장 명령어로, 알리어스 설정을 제거할 수 있습니다.

문법

unalias [-a][알리어스]

파라미터

  • -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: 명령어가 없음

Linux 명령어大全