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-
Unpacking Zip Folders into Windows Long File Paths
-
[image: Zip Archive Banner]
Long file paths on Windows are a pain in the ass - we all know that. But
today I ran into yet another issue with it that's wo...
2 weeks ago