All Questions
2 questions
2
votes
3
answers
6k
views
Progress bar to display progress based on number of files found/completed in for loop?
Is there a progress bar that can show visually completed progress based on the number of detected files found and completed in a for loop like the one below?
mkdir -p hflip; for i in *.mp4; do ffmpeg ...
4
votes
2
answers
10k
views
How do I use a temporary environment variable in a bash for loop?
I want to run YII_ENV=prod yii kw/test ten times. I tried
$ YII_ENV=prod for x in 1..10 do; yii kw/test done;
-bash: for: command not found
1304682651
(Seemed to run once.) I also tried
$ for x in {...