masklinn í dag viðrar vel til loftárása | - ANSI-quoted string: dans une chaîne entre $' et ', les caractères d'échappement ANSI C (genre \t) sont interprétés
- "verbatim insert", selon le shell Control-V va insérer la touche suivante litéralement au lieu de l'interpréter.
- printf %b
Donc
> ./my-prof $'foo\tbar' Got 2 arguments ./my-prof foo bar
|
ou bien (foo [Control-V][Tab] bar)
> ./my-prof 'foo bar' Got 2 arguments ./my-prof foo bar
|
ou encore
> ./my-prof "$(printf %b 'foo\tbar')" Got 2 arguments ./my-prof foo bar
|
Message édité par masklinn le 23-02-2016 à 13:18:42 ---------------
Stick a parrot in a Call of Duty lobby, and you're gonna get a racist parrot. — Cody
|