Quantcast
Channel: Evilprofessor.co.uk » bash
Browsing latest articles
Browse All 3 View Live

Office Grid Computing using Virtual environments – Part 5

Introduction I work in a company where we run many batch jobs processing millions of records of data each day and I’ve been thinking recently about all the machines that sit around each and every day...

View Article


Image may be NSFW.
Clik here to view.

Office Grid Computing using Virtual environments – Part 4

Introduction I work in a company where we run many batch jobs processing millions of records of data each day and I’ve been thinking recently about all the machines that sit around each and every day...

View Article


Move a file to a subdirectory of the same name

A quick bash one liner to create and move a set of files in a directory to a sub-directory of the same name: IFS=$'\n'; for i in `find . -maxdepth 1 -type f`; do echo "$i"; dir=${i%.*}; \ echo "$dir";...

View Article
Browsing latest articles
Browse All 3 View Live