Thank you for being a valued part of the CNET community. As of December 1, 2020, the forums are in read-only format. In early 2021, CNET Forums will no longer be available. We are grateful for the participation and advice you have provided to one another over the years.

Thanks,

CNET Support

General discussion

Quick, Help!

Jul 16, 2005 8:27AM PDT

Somehow, when I was creating the directory

/usr/lib/win32

I accidentally moved all of the files of

/usr/lib

into a new folder

/usr/win32.


.............................

I need the commands [console only] to move all files from /usr/win32 into /usr/lib

Discussion is locked

- Collapse -
Whew!
Jul 16, 2005 8:30AM PDT

Don't worry.

I found an easier way. I rename /usr/win32 to:
/usr/lib.

Thanx Anyways,

Lilsim89

- Collapse -
I would do it another way
Jul 17, 2005 4:23AM PDT

mkdir /usr/lib/win32
cp /usr/lib(files you renamed) /usr/lib/win32
rm -rf /usr/win32 (after changing name back)
But that's just me. chuck