Confused

THERE HAS TO BE A BETTER WAY TO DO THIS?????

Some of my areas are on my c drive and some on my d drive. How can i have it do both

...

no

>THERE HAS TO BE A BETTER WAY TO DO THIS?????
Just take a screenshot

fucking australians

he didn't want the whole screen???

cmd+shift+4

hello newfriend

Post your script. You should be able to use wildcards for all of those directories in %username%. You could also loop C: and D:

sup reddit

On Linux, this is just
rsync -av

Nothing wrong with the way you're doing it now if it works.

Don't let autists bother you. If you're autistic then you should RTFM because this would be very easily done in bash and probably powershell too

hasn't the table tag been depreciated for like a decade?

Do you want me to use the Sup Forums image renaming script?

is fine for tables, but should not be used for layout

He's copying a script to user directories and running it from those directories. How do you think rsync would be useful in this situation when you don't even know what's in the script?

DEPRECATED you fucking retard

No, i want you to get the fuck back to your shithole

lol sry bro.

You don't have to shout.

Well, that won't happen any time soon.

Oh, I just made a glimpse of the comment and the code and just assumed it was a dumb way to copy. This problem can be solved with symbolic links

Why not? It's piss easy.

Lol, let's write 100 lines of CSS so that we can have table aligned divs xD

>line 16
>
>left;"
been a long time since I into html.. do you really need the ; at the end of left if its already being terminated by the "?

I don't know shit about most scripting languages, but this is how I'd do it.
# pseudocode
dirs = [ "C:\dir1", "C:\dir2", "D:\dir1" ] # etc

# alternately, put dirs in a separate text file and read in from that file

for dir in dirs
cp C:\startbat\start.bat $dir
cd $dir
start start.bat
done