#!/bin/csh -f # # Brent Chivers 2005/Mar/26 # # Take the file "user_pics" (which should be created by # the get_user_pics script) and edit it into the lj/index.html # web page. # # Include Dreamwidth userpics (from get_DW_user_pics). 2010/Dec/07 # the next two lines can be uncommented for diagnostics # set verbose # see commands before variable substitution # set echo # see commands after variable substitution unset histchars # get user's history characters out of the way unalias * # get user's .cshrc stuff out of the way ## set nonomatch # don't require wildcard matches ed lj/index.html << 'EdIt_DoNe' // +,//-d //r lj/user_pics //r lj/DW_user_pics w q 'EdIt_DoNe'