1472 links
  • Animal
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
3 results tagged page x
  • bash wget - check if file exists at url before downloading · GitHub

    Pour tester si une page existe sans la télécharger :

    #!/bin/bash
    
    # Renvoie "true" si la page passée en argument existe.
    # @param $1 : l'URL de la page dont on veut tester l'existence.
    # @return true si la page existe, false sinon.
    is_URL_real()
    {
        local page_exists
        page_exists="false"
    
        if [[ `wget --server-response --spider "$1"  2>&1 | grep 'HTTP/1.1 200 OK'` ]]; then
            page_exists="true"
        fi
    
        echo "$page_exists"
    }
    
    is_URL_real "$1"

    Ce qui donne à l'exécution :

    ./test_URL.sh "https://www.qwant.com"
    true
    June 27, 2018 at 5:52:24 PM GMT+2 * - permalink -
    QRCode
    - https://gist.github.com/hrwgc/7455343
    Bash Linux wget page existence test
  • Richard Taillet -- Page personnelle CNRS

    La page perso de Richard Taillet, recensant ses cours filmés (entre autres choses).

    March 6, 2018 at 5:14:34 PM GMT+1 - permalink -
    QRCode
    - http://lapth.cnrs.fr/pg-nomin/taillet/site_perso/main_part6.php
    Richard_Taillet CNRS Page Personnelle Cours Vidéos
  • Infographie : 200 critères de l'algorithme SEO de Google

    Tout est dans le titre!

    January 20, 2018 at 4:46:48 PM GMT+1 - permalink -
    QRCode
    - https://www.webrankinfo.com/dossiers/breves/infographie-200-criteres
    Infographie SEO Google Algorithme Page Ranking Référencement webrankinfo.com
Links per page: 20 50 100
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation