This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax enable | |
filetype indent on | |
filetype indent plugin on | |
set nocompatible | |
set wildmenu | |
set showcmd | |
set linebreak | |
set showbreak=+++ | |
set textwidth=100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
### Linux utilites ### | |
###################### | |
echo "List of essential Linux utilites" | |
BASIC="man ls cd pwd grep head tail cut cat uniq sort wc tar less file ln rm" | |
BASIC+=" cp mkdir find xargs test time uname chmod chown groups locate basename" | |
BASIC+=" touch top" | |
LEARNER="whatis whereis which" | |
PROGRAMMER="git ctags diff patch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: system:aggregated-metrics-reader | |
labels: | |
rbac.authorization.k8s.io/aggregate-to-view: "true" | |
rbac.authorization.k8s.io/aggregate-to-edit: "true" | |
rbac.authorization.k8s.io/aggregate-to-admin: "true" | |
rules: |