View Single Post
Posts: 13 | Thanked: 6 times | Joined on Mar 2011
#525
Originally Posted by tangigi View Post
cp images /usr/share/wgames/gamesinfo/
cp ini /usr/share/wgames/gamesinfo/
cp hacks /usr/share/wgames/gamesinfo/
it gave a reply of:

cd: omitting directory 'images'
cd: omitting directory 'ini'
cd: omitting directory 'hacks'
These 3 directories already exist, hence they are being omitted from copying. Try this instead:
Code:
cp images/* /usr/share/wgames/gamesinfo/
cp ini/* /usr/share/wgames/gamesinfo/
cp hacks/* /usr/share/wgames/gamesinfo/
 

The Following User Says Thank You to StingerID4 For This Useful Post: