1416 links
  • Animal
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
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
    Wed Jun 27 17:52:24 2018 * - permalink -
    QRCode
    - https://gist.github.com/hrwgc/7455343
    Bash existence Linux page test wget
  • Richard Taillet -- Page personnelle CNRS

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

    Tue Mar 6 17:14:34 2018 - permalink -
    QRCode
    - http://lapth.cnrs.fr/pg-nomin/taillet/site_perso/main_part6.php
    CNRS Cours Page Personnelle Richard_Taillet Vidéos
  • Infographie : 200 critères de l'algorithme SEO de Google

    Tout est dans le titre!

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