Here are the questions:
- Why have we used '&' after audacious -e "$music"? What does it means? try to open other programs with '&' at the end and without it!
- Why we put the audacious -e "$music" & in the for loop and didn't used a playlist variable like before? What script is better?
- Why music variable has a '$' in the for loop?
- Why have we put *.wma instead of *.mp3? Are you going to do the same?
- Why the -E became a -e? Check man audacious to find out!
- & runs the command or program in background, so the terminal is free for putting other commands!
- Because the -e adds songs to the current playlist.
- If a variable is going to be used for output must have $ in front
- The songs of Celine Dion was in wma format. If yours are mp3 or other format you shouldn't use wma.
- Because -E creates a temporary playlist.
No comments:
Post a Comment