I've a certain amount of files always containing same name but different extensions, for example sample.dat
, sample.txt
, etc.
I would like to create a script that looks where sample.dat
is present and than moves all files with name sample*.*
into another directory.
I know how to identify them with ls *.dat | sed 's/\(.*\)\..*/\1/'
, however I would like to concatenate with something like || mv
(the result of the first part) *.* /otherdirectory/