g-lisp-general

sexps

May 10th, 2014
1,171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Here is an Emacs sexp to turn the link documents into a list of urls for tools such as wget:
  2.  
  3. (progn
  4. (beginning-of-buffer)
  5. (replace-regexp "^>.*" "")
  6. (beginning-of-buffer)
  7. (replace-regexp "^ ?-.* | " ""))
  8.  
  9. This document may eventually contain other sexps for arbitrary tasks.
Advertisement
Add Comment
Please, Sign In to add comment