2049 shaares
148 private links
148 private links
3 results
tagged
Bash
Pour me souvenir des set -u, set -e, trap & cie dans les scripts Bash
Garder son historique bash synchro entre les différents terminaux.
En tant qu'utilisateur intensif de tmux, je dis MERCI.
--> dans le .bashrc
Avoid duplicates
export HISTCONTROL=ignoredups:erasedups
When the shell exits, append to the history file instead of overwriting it
shopt -s histappend
After each command, append to the history file and reread it
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r
for nom in .ogg; do avconv -i "$nom" "${nom%.}.mp3"; done;
Plus d'explication sur les variables bash et l' "extraction" de nom de fichier par %.*: http://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html#Shell-Parameter-Expansion