19 lines
294 B
Markdown
19 lines
294 B
Markdown
List of popular commands and shortcuts
|
|
|
|
|
|
```bash
|
|
# from previous comand
|
|
!0 - command itself
|
|
!^ - first argument
|
|
!$ - last argument
|
|
!* - all arguments
|
|
|
|
# Kubernetes
|
|
# ~/.kube/config
|
|
kubectl config get-contexts
|
|
kubectl config use-context <context>
|
|
|
|
# AWS
|
|
aws eks update-kubeconfig --name nas
|
|
```
|