4137 links
741 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 8 / 9
Newer►
165 results tagged linux x
  • thumbnail
    LÝ MINH PHƯƠNG: Using Nginx as reverse proxy
    November 9, 2013 12:41:46 PM GMT+01:00 - permalink -
    QRCode
    - http://lyphuong.blogspot.fr/2011/06/using-nginx-as-reverse-proxy.html
    nginx reverse_proxy configuration tool linux
  • thumbnail
    Git Cheatsheet

    git by bleu again thx les RSS de shaarli

    November 9, 2013 10:25:09 AM GMT+01:00 - permalink -
    QRCode
    - http://www.ndpsoftware.com/git-cheatsheet.html#loc=remote_repo;
    git tool linux cheatsheet
  • thumbnail
    Hexchat 2.9.6.1 disponible – Amélioration des protocoles IRCv3 et SASL | La vache libre

    hexachat is not bad :-)

    November 7, 2013 09:01:46 AM GMT+01:00 - permalink -
    QRCode
    - http://la-vache-libre.org/hexchat-2-9-6-1-disponible-amelioration-des-protocoles-ircv3-et-sasl/
    tool linux irc
  • thumbnail
    Pacman, Pinball, Frogatto, Bomberclone et Funguloids – Quelques jeux sympathiques pour tuer le temps au bureau | La vache libre
    November 7, 2013 08:45:49 AM GMT+01:00 - permalink -
    QRCode
    - http://la-vache-libre.org/pacman-pinball-frogatto-bomberclone-et-funguloids-quelques-jeux-sympathiques-pour-tuer-le-temps-au-bureau/
    linux games
  • thumbnail
    Obtenez un grand nombre d’informations sur votre système grâce à Inxi | La vache libre
    November 7, 2013 08:45:34 AM GMT+01:00 - permalink -
    QRCode
    - http://la-vache-libre.org/obtenez-un-grand-nombre-dinformations-sur-votre-systeme-grace-a-inxi/
    tool linux system
  • thumbnail
    How to compile HAProxy from source and setup a basic configuration
    November 6, 2013 03:23:12 PM GMT+01:00 - permalink -
    QRCode
    - http://louwrentius.com/how-to-compile-haproxy-from-source-and-setup-a-basic-configuration.html
    haproxy doc tuto linux tool
  • thumbnail
    Créer un serveur OpenVPN - 15 Minutes of Fame

    not bad ce tuto surtout pour les options que j'avais zoublié sur le push redirect gateway client side :D

    November 3, 2013 01:22:39 PM GMT+01:00 - permalink -
    QRCode
    - http://15minutesoffame.be/nico/blog2/?article16/creer-un-serveur-openvpn
    openvpn tuto linux tool
  • thumbnail
    Shell : Historiser (logguer) toutes les commandes shell | L'admin sous GNU / Linux - Blog Libre

    mis en test sur coin, a surveiller

    November 3, 2013 11:39:01 AM GMT+01:00 - permalink -
    QRCode
    - http://blog.admin-linux.org/administration/shell-historiser-logguer-toutes-les-commandes-shell
    ril tdl tool linux bash
  • thumbnail
    Utiliser Gala sous XFCE ← elementary OS Fr
    November 3, 2013 11:24:53 AM GMT+01:00 - permalink -
    QRCode
    - http://www.elementaryos-fr.org/utiliser-gala-xfce/
    xfce tool linux
  • thumbnail
    bash - Why does "$i | sed" not work? - Unix & Linux Stack Exchange

    You can substitute the value of $i in to see the exact command you're trying to run:

    app4/ | sed -e "s/^.*(.)$/\1/"

    This doesn't work because app4/ isn't a command. You're trying to pipe app4/ into sed, so you need to use something that outputs app4/:

    echo app4/ | sed -e "s/^.*(.)$/\1/"

    This works, but you don't really need to use sed for this; bash has quite a few string manipulation tools. For example, ${i#} will give you the length of $i, and ${i:j} will give you a substring starting at j, so ${i:$((${i#}-1))} will give you the last character.

    The easiest way to do what you're trying is probably with ${i%/}. This will return $i, but will strip off a / from the end if there is one:

    $ i="app4"; echo ${i%/}
    app4
    $ i="app4/"; echo ${i%/}
    app4

    Thus:

    if [ "${i%/}" = "$i" ]
    then
    echo "file"
    else
    echo "folder"
    fi

    However, if all you really want is to know if $i is a valid directory, you can just use:

    if [ -d "$i" ]

    November 2, 2013 09:58:05 PM GMT+01:00 - permalink -
    QRCode
    - http://unix.stackexchange.com/questions/27334/why-does-i-sed-not-work#27336
    sed hack tool linux bash
  • thumbnail
    WebRTC Copy « Korben Korben

    node.js, encore :-) ( de la merde)

    November 2, 2013 10:03:47 AM GMT+01:00 - permalink -
    QRCode
    - http://korben.info/exemple-webrtc.html
    file manager linux
  • thumbnail
    reader

    installé, testé, invalidé :D

    November 2, 2013 09:48:00 AM GMT+01:00 - permalink -
    QRCode
    - http://reader.nunux.org/
    reader tool linux
  • thumbnail
    SCRIPTS D'UNE LIGNE UTILES POUR SED (ÉDITEUR DÉFILANT UNIX)

    la version fr :-)

    November 2, 2013 09:33:30 AM GMT+01:00 - permalink -
    QRCode
    - http://sed.sourceforge.net/sed1line_fr.html
    sed cheat sheet tool linux
  • thumbnail
    sed cheat sheet _ UK
    November 2, 2013 09:31:36 AM GMT+01:00 - permalink -
    QRCode
    - http://sed.sourceforge.net/sed1line.txt
    sed cheat sheet tool linux
  • thumbnail
    awk cheat sheet
    November 2, 2013 09:31:11 AM GMT+01:00 - permalink -
    QRCode
    - http://www.pement.org/awk/awk1line.txt
    awk linux tool fifiche
  • thumbnail
    Rajiv's blog - Scaling lessons learned at Dropbox, part 1

    approche géniale de la scalabilité

    November 2, 2013 09:30:23 AM GMT+01:00 - permalink -
    QRCode
    - http://eranki.tumblr.com/post/27076431887/scaling-lessons-learned-at-dropbox-part-1
    scalability awk sed linux tool tool_list
  • thumbnail
    Powertop – Réduisez la consommation électrique de votre PC portable | La vache libre
    October 28, 2013 11:45:11 AM GMT+01:00 - permalink -
    QRCode
    - http://la-vache-libre.org/powertop-reduisez-la-consommation-electrique-de-votre-pc-portable/
    tool linux
  • thumbnail
    Infinity Conky for Ubuntu/Linux Mint/Debian/Fedora/Other Distributions (New Update) - Noobs on Ubuntu, Mint and Debian, HD Wallpapers, Tutorials

    rha j'ai failli le perdre celui là :D
    so much gorgeos doge

    October 27, 2013 01:18:10 PM GMT+01:00 - permalink -
    QRCode
    - http://www.noobslab.com/2012/06/install-infinity-conky-in-ubuntulinux.html
    conky linux tool
  • thumbnail
    Conférences
    October 25, 2013 09:52:06 PM GMT+02:00 - permalink -
    QRCode
    - http://confs.fr/
    conférences confs linux
  • thumbnail
    "wilfried caruel : Xpad le logiciel open source de la semaine" http://feedly.com/k/17JsPSE

    post it

    October 24, 2013 12:11:26 AM GMT+02:00 - permalink -
    QRCode
    - http://www.wilfriedcaruel.me/2013/10/xpad-le-logiciel-open-source-de-la.html
    tool linux
Links per page: 20 50 100
◄Older
page 8 / 9
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation