Skip to content

Instantly share code, notes, and snippets.

@iamtekeste
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamtekeste/8933260 to your computer and use it in GitHub Desktop.
Save iamtekeste/8933260 to your computer and use it in GitHub Desktop.
Copy Single file to multiple directories
#Linux
echo dir1 dir2 dir3 | xargs -n 1 cp file1
#Windows
for /d %F in (e:\*) do @if /i "%F" neq "e:\wav" 2>nul xcopy "%F\*.wav" "e:\wav"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment