Answers for "move files from multiple folders to one folder linux"

1

bash how to copy or move all files in a list

# Basic syntax:
cp `cat list_of_files` /new/directory # To move the files, use mv instead
# Where the list_of_files can be separated by new lines or spaces and
# can include the full path or just the relative path (as long as you
# run the command in the directory where the files are for the latter)
Posted by: Guest on September-28-2020
1

how to move multiple files from one folder to another in linux

mv file1 file2 file3 -t DESTINATION
Posted by: Guest on July-02-2020

Code answers related to "move files from multiple folders to one folder linux"

Code answers related to "Javascript"

Browse Popular Code Answers by Language