The files have a common pattern.
feed_predict.data.4.202.0
feed_predict.mdl.4.202.0
feed_predict.so.4.202.0
feed_predict.xml.4.202.0
I want to move files in batches.
for x in feed_predict{.*}4.202.0;
//ls $x //nothing prints here
sudo mv $x $1.4.17.0;
end
But $x is empty here.