Skip to main content
1 of 4
Prvt_Yadav
  • 6k
  • 7
  • 39
  • 52

untested

for i in *.txt *.html
 do
  mv "$i" "${i%.*}.directory/$i"
 done 

Run this in same directory where you are having files.

Prvt_Yadav
  • 6k
  • 7
  • 39
  • 52