SixFooter
Queen Bee
- Joined
- Sep 16, 2009
- Messages
- 2,150
- Reaction score
- 1,430
- Location
- Merseyside
- Hive Type
- National
- Number of Hives
- 12
What about the non gui stuff vi and shell scripting and the cron and find.
e.g Copy all files in the current directory and its sub directories that begin with a capital letter and were modified yesterday and contain the word funeral
find ./ - type f -mtime 1 -name [A-Z]* -exec grep -i funeral {} \; -exec cp {} /usr/temp/
Glorious! How would you do that in windows?
e.g Copy all files in the current directory and its sub directories that begin with a capital letter and were modified yesterday and contain the word funeral
find ./ - type f -mtime 1 -name [A-Z]* -exec grep -i funeral {} \; -exec cp {} /usr/temp/
Glorious! How would you do that in windows?