export win_data_root_dir=/cygdrive/c/var for dir in `ls -1 $win_data_root_dir`; do target_path=$win_data_root_dir/$dir ; link_path=/var/$dir ; mkdir -p `dirname $link_path`; unlink $link_path; ln -s "$target_path" "$link_path"; ls -la $link_path; done; history | cut -c 8-
Back to Basics: Using the Parallel Library to Massively Boost Loop
Performance
-
[image: Parallell Faces]
A few days ago I posted a quick note on X about a specific use case of
using the Parallel library in .NET to *massively optimize...
2 weeks ago