Skip to content

Instantly share code, notes, and snippets.

View alternative-rvb's full-sized avatar
😃

Nicolas Malet alternative-rvb

😃
View GitHub Profile
@alternative-rvb
alternative-rvb / .bashrc
Last active May 30, 2020 16:28
Bash: Personaliser le prompt en couleurs
## config de base
# export PS1='\u@\H:\w\$ '
## Les codes couleurs sont entre crochets
## DEBIAN :
export PS1='\[\033[02;32m\]\u@\H:\[\033[02;34m\]\w\$\[\033[00m\]\ '
## CENTOS :
# export PS1='\[\033[31m\][\u@\H\[\033[34m\] \w \[\033[31m\]]\[\033[31m\]\$\[\033[00m\] '
@alternative-rvb
alternative-rvb / sha256sum.sh
Last active September 14, 2019 09:03
Bash: Comment utiliser sha256sum
# https://doc.ubuntu-fr.org/tutoriel/comment_verifier_l_integrite_de_son_image_cd
sha256sum -c hugo_0.58.0_checksums.txt hugo_extended_0.58.0_Linux-64bit.deb | grep OK
@alternative-rvb
alternative-rvb / bash save ssh keys
Last active October 15, 2019 09:31
Ubuntu : Sauvegarder la passphrase ssh
# # Insert in ~/.profile
# Need to install keychain
eval `keychain --eval --agents ssh -q ~/.ssh/id_rsa`
@alternative-rvb
alternative-rvb / .bashrc
Last active August 12, 2020 20:22
Ubuntu : Afficher le nom de la branche git sur votre terminal
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\n\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$ (parse_git_branch)\$ '