I'm trying to write a for loop in bash to get the files with extension of jpg, jpeg, png, this i my attempt, but does not work
for file in "${arg}"/*.{jpg,jpeg,png}; do echo ${arg}-something.jpg > z.txt ; done;
basically, i want to get the name of the file with those extension in the current folder, and do something with each file, then output the filename back with a new extension.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…