The little things give you away... A collection of various small helper stuff
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

9 Zeilen
328 B

  1. #!/bin/bash
  2. # Usage: wpull2-extract-remaining FILENAME
  3. # FILENAME points to a wpull 2.x SQLite DB
  4. # Prints all remaining URLs from the DB on stdout
  5. for status in in_progress todo error
  6. do
  7. sqlite3 "$1" 'SELECT url_strings.url FROM queued_urls JOIN url_strings ON url_string_id = url_strings.id WHERE status = "'$status'"'
  8. done