Search Results

Search: Posts Made By: Buzzman25
2,114
Posted By rdcwayx
find / -type d -name "thumbnail" |while read...
find / -type d -name "thumbnail" |while read folder
do
dir=$(echo $folder|sed "s/images/amazon/")
mkdir -p $dir
cp -u $folder $dir
done
4,664
Posted By agama
Probably lots of ways to do this. You can pipe...
Probably lots of ways to do this. You can pipe the output of a find command through this small awk which will generate the mv commands.


find . -type f | awk '{ o = $0; split( $NF, a, "." );...
Showing results 1 to 2 of 2

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