↧
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 ArticleOffice 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 ArticleMove 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