Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Service
- enum
- Kotlin
- react native
- vuex
- lifecycle
- LiveData
- Foreign Key
- class component
- collection
- ConstraintLayout
- ReactNative
- Filter
- docker
- Swift
- Generic
- union
- recyclerview
- MINUS
- 생명주기
- elementAt
- Interface
- list
- docker-compose
- map
- mongoose
- CLASS
- animation
- function
- AWS
Archives
- Today
- Total
개발 일기
alias ? 본문
자주 사용하는 명령어 들을 별칭을 통해서 접근할 수 있게 만들어주는 명령어입니다.
[예시]
alias 리스트를 보여줍니다.
$ alias
alias 해제 합니다.
$ unalias tmp
모든 alias 해제 합니다.
$ unalias -a
alias 등록
$ alias tmp='echo helloworld'
$ tmp
helloworld
Comments