Search Results

Search: Posts Made By: codecaine21
2,718
Posted By codecaine21
Then do sudo find dir_to_copy_from -regextype...
Then do
sudo find dir_to_copy_from -regextype posix-extended -regex ".*\.(txt|xls|pdf)" -exec cp {} dir_to_copy_to \;

Example:
sudo find /home/codecaine21/Documents/ -regextype posix-extended...
2,718
Posted By codecaine21
sudo find . -regextype posix-extended -regex...
sudo find . -regextype posix-extended -regex ".*\.(txt|xls|pdf)" -exec cp {} dest_dir \;

or

cp `find . | egrep "*\.(txt|pdf|xls)"` dest_dir

Find in conjunction with the period(.) will start...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 06:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy