Using the command below you can create a simple directory tree just by using standard commands:
find . -print | sed -e ‘s;[^/]*/;|____;g;s;____|; |;g’
Using the command below you can create a simple directory tree just by using standard commands:
find . -print | sed -e ‘s;[^/]*/;|____;g;s;____|; |;g’
Have you ever had a folder filled with DLLs that you needed to register in the system? You can register them all by just running this simple command:
for %v in (“<path>\*.dll”) do (regsvr32 /s “%v”)