4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
47 results tagged bash x
  • thumbnail
    Bash to Python Converter | zwischenzugs

    sur terre, y'a des gens fous

    August 31, 2016 03:17:00 PM GMT+02:00 * - permalink -
    QRCode
    - https://zwischenzugs.wordpress.com/2016/08/29/bash-to-python-converter/
    python bash
  • The Bash Hackers Wiki [Bash Hackers Wiki]
    June 26, 2016 02:38:04 PM GMT+02:00 * - permalink -
    QRCode
    - http://wiki.bash-hackers.org/
    bash
  • Shell Style Guide

    le coding guide de google pour bash, vraiment pas mal de de points intéressants

    June 13, 2016 01:00:27 PM GMT+02:00 * - permalink -
    QRCode
    - https://google.github.io/styleguide/shell.xml
    bash google
  • thumbnail
    bashttpd/bashttpd at master · avleen/bashttpd

    y'a des gens qui sont fous quand même :D

    May 23, 2016 04:17:05 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/avleen/bashttpd/blob/master/bashttpd
    bash http httpd
  • thumbnail
    BYVoid/Batsh: A language that compiles to Bash and Windows Batch

    un jour si je reviens sur windows, je me servirai bcp de ça je pense

    May 23, 2016 10:28:12 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/BYVoid/Batsh
    windows batch bash
  • Bash History: Correct / Repeat The Last Command With a Substitution

    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
    February 23, 2016 12:07:24 PM GMT+01:00 * - permalink -
    QRCode
    - http://www.cyberciti.biz/faq/bash-history-repeat-substitution-command-syntax/
    bash
  • Bash associative array examples

    Aha c'est moins chiant à faire depuis la dernière mise à jour

    December 15, 2015 07:38:09 PM GMT+01:00 * - permalink -
    QRCode
    - http://www.artificialworlds.net/blog/2012/10/17/bash-associative-array-examples/
    bash
  • Host Completion in bash

    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".

    June 15, 2015 09:43:30 AM GMT+02:00 * - permalink -
    QRCode
    - http://www.serverwatch.com/tutorials/article.php/3805931/Host-Completion-in-bash.htm
    bash
  • Guide avancé d'écriture des scripts Bash

    Un guide super complet, via je sais plus qui

    April 21, 2015 01:33:33 PM GMT+02:00 * - permalink -
    QRCode
    - http://abs.traduc.org/abs-fr/
    bash
  • Festival de commandes bash en une ligne | Matutine
    March 14, 2015 11:24:57 AM GMT+01:00 * - permalink -
    QRCode
    - http://matutine.cmoi.cc/posts/festival-de-commandes-bash-en-une-ligne.html
    bash
  • zsh - yeKblog

    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

    February 22, 2015 03:13:07 PM GMT+01:00 * - permalink -
    QRCode
    - http://yeknan.free.fr/dc2/index.php?post/2015/02/19/zsh
    bash zsh
  • Shellshock BASH Vulnerability Tester

    on remercie ces braves âmes qui pensent aux fainéants comme nous

    October 3, 2014 04:10:19 PM GMT+02:00 * - permalink -
    QRCode
    - https://shellshocker.net/
    shellshock bash patch
  • Une faille nommée « shellshock » - LinuxFr.org

    bon article :)

    September 30, 2014 11:12:02 AM GMT+02:00 * - permalink -
    QRCode
    - http://linuxfr.org/news/une-faille-nommee-shellshock#le-second-probl%C3%A8me-cve-2014-7169
    shellshock bash
  • bash:tip_colors_and_formatting - FLOZz' MISC

    ça sert pour les warnings dans les commandes à risque, dans un script :-)

    July 28, 2014 05:01:31 PM GMT+02:00 * - permalink -
    QRCode
    - http://misc.flogisoft.com/bash/tip_colors_and_formatting
    bash
  • thumbnail
    Defensive BASH programming - Say what?

    il faudrait que j'arrive à pousser un squelette de script comme ça, une librairie transverse qui contiendrait l'essentiel des bonnes methodes et pratiques ...

    June 1, 2014 05:43:53 PM GMT+02:00 * - permalink -
    QRCode
    - http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming/
    bash
  • bash keyboard shortcuts | SS64.com
    May 26, 2014 05:41:33 PM GMT+02:00 * - permalink -
    QRCode
    - http://ss64.com/bash/syntax-keyboard.html
    bash shortcuts cheatsheet
  • thumbnail
    Final Term

    seems nice, à tester (via noiz)

    March 28, 2014 05:16:46 PM GMT+01:00 - permalink -
    QRCode
    - http://finalterm.org/
    shell bash linux tool
  • thumbnail
    PubTeX output 1994.11.22:1540 - reference.card-ksh.programming.pdf

    une petite cheatsheet pour le bash/ksh

    March 3, 2014 05:05:28 PM GMT+01:00 - permalink -
    QRCode
    - http://st23.org/misc/sysadmin/downloads/reference.card-ksh.programming.pdf
    bash cheatsheet
  • thumbnail
    typeset man document

    [doo:~] $ typeset -u toto
    [doo:~] $ toto=TaTa
    [doo:~] $ echo $toto
    TATA
    #awesome

    March 3, 2014 05:04:27 PM GMT+01:00 - permalink -
    QRCode
    - http://www2.research.att.com/~astopen/man/man1/typeset.html
    bash
  • thumbnail
    How to Find and Delete Empty Directories and Files in Unix

    les snippets, c'est la clé du succès du fainéant :D

    find . -type d -empty -exec rmdir {} \;

    February 25, 2014 09:06:28 PM GMT+01:00 - permalink -
    QRCode
    - http://www.thegeekstuff.com/2010/03/find-empty-directories-and-files/
    find command linux bash
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation