Tag Archive
ad blocker
AJAX
Alphabet Juice
apple
bars
Bayonne
blithe spirit
blue hill
books
brebidou
broadway
calculator
cars
cheeses
converter
d'affinois
default
desktop
drugs
durang
epoch
food
havarti
hitchcock
honey
hosts file
Hurricane Irene
hydromel
IE8
imac
Indian
inPrivate Filtering
Jack Finney
JavaScript
joke
json
manhattan
mechanics
midtown manhattan
mySQL
NAICS
perl
pun
restaurants
roth private reserve
UNIX/AWK Tricks: How to copy a long list of files into a directory
Make your list of files, with complete paths, call it “imgList.txt”. Put every file on a new line. Write a small awk script with the following 1 line: { printf(”cp %s images/\n”,$0);} Save the script as “copyList.awk” Do the following command: awk -f copyList.awk imgList.txt | sh Brief explanation of the awk script: %s means you’re putting a string in that... »
