View Single Post
  #84  
Old 11-27-2011, 12:17 AM
tristantio tristantio is offline
Fire Giant

tristantio's Avatar

Join Date: Nov 2010
Posts: 888
Default

I'm doing this on Linux, so a working version for that would be via bash script:

PHP Code:
#!/bin/bash

WINEDIR='~/.wine/drive_c/Program Files/Sony'
OLDFOLD='EverQuest'
NEWFOLD='EQLite'

for i in `cat ~/bin/eqEssentials`
do
   
cp -"$WINEDIR/$OLDFOLD/$i" "$WINEDIR/$NEWFOLD/"
done 
This script depends on you having a plain text file of all the needed files saved in ~/bin/eqEssentials
Reply With Quote