le coding guide de google pour bash, vraiment pas mal de de points intéressants
y'a des gens qui sont fous quand même :D
un jour si je reviens sur windows, je me servirai bcp de ça je pense
Je mets ça là parce que je m'en rappelle jamais :
This guide explains how to repeat the last command with a substitution under bash shell for command line arguments under Unix like operating systems.
Bash History: Correct / Repeat The Last Command With a Substitution
by Vivek Gite on August 12, 2012 last updated February 23, 2016
in BASH Shell, Linux, UNIX
I often type the wrong command as follows under Linux bash shell:
rsync -av dir1 user@server1.cyberciti.biz:/path/to/dir1
OR
cp -av file1*.txt file2*.txt /path/to/dest
I need to correct those command as follows:
rsync -av dir5 user@server1.cyberciti.biz:/path/to/dir1
cp -av delta1*.txt delta2*.txt /path/to/dest
How do I replace dir1 with dir5 or file with delta and repeat the last command under bash shell?
The bash shell supports both history search and replace operations. The bash (and many other modern) shell provides access to the command history, the list of commands previously typed. The bash shell supports a history expansion feature found in other shell such as csh.
Syntax: Bash history search and replace the command args
The syntax is as follows for quick substitution and repeat the last command, replacing word1 with word2:
^WORD1^WORD2^
OR
!!:s/WORD1/WORD2
OR
!!:gs/WORD1/WORD2
In this example, I’m trying to copy a file called youtube-demo-andriod-app-part1.avi to /backup directory
$ cp youtube-demo-andriod-app-part-102.avi /backup/
To repeat the last command with a substitution:
$ ^102^1002^
OR
$ !!:s/102/1002
Aha c'est moins chiant à faire depuis la dernière mise à jour
Aller, on récupère une feature ultra cool de fedora :
apt-get update; apt-get install -y bash-completion (déjà présent sur ubuntu)
. /etc/bash_completion
complete -F _known_hosts update
Ce truc est présent dans tous les "autres" shells (zsh, fish, whatever) mais c'est un tweak à apporter à bash. C'est dommage que les distributions soient de plus en plus orienté "user lambda" plutôt que "linux user".
Un guide super complet, via je sais plus qui
Mouais, c'est pas un avantage technique que d'utiliser zsh vs bash, tu ajoutes liquidprompt sur ton bashrc et tu as le meme résultat, en mieux.
J'attends toujours les raisons TECHNIQUES qui motivent ce choix :D
on remercie ces braves âmes qui pensent aux fainéants comme nous
ça sert pour les warnings dans les commandes à risque, dans un script :-)
il faudrait que j'arrive à pousser un squelette de script comme ça, une librairie transverse qui contiendrait l'essentiel des bonnes methodes et pratiques ...
seems nice, à tester (via noiz)
[doo:~] $ typeset -u toto
[doo:~] $ toto=TaTa
[doo:~] $ echo $toto
TATA
#awesome
les snippets, c'est la clé du succès du fainéant :D
find . -type d -empty -exec rmdir {} \;