Help with bash script.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with bash script.
# 8  
Old 02-15-2010
Quote:
Originally Posted by m2dmhot
Ok im going line by line here with you..
i understand what you said about standard syntax for defining a function.
now.. My mp3 are stored in /home/Fedora11/MP3
You state there is no need to quote a variable assignment unless there is a literal white space or other special characters.
if you put

Code:
AUDIOPATH=$PLAYLIST/MP3

how does it know where the mp3 are???

You tell it. Presumably, "$AUDIOPATH" contains the directory with the mp3s. If not, why did you assign it?
Quote:

then you state that if you really need to create these files ahead fo time there is no need to use external command touch. again your removing the directory listing. How does it know where the directories are??

You tell it. That's what the variable is for.
# 9  
Old 02-15-2010
Quote:
Originally Posted by cfajohnson

You tell it. Presumably, "$AUDIOPATH" contains the directory with the mp3s. If not, why did you assign it?

You tell it. That's what the variable is for.
Why are you putting playlist infront of the mp3???
# 10  
Old 02-15-2010
Quote:
Originally Posted by m2dmhot
Why are you putting playlist infront of the mp3???

I didn't; you did.

You had:
Code:
AUDIOPATH='/home/Fedora11/MP3'

That is the same thing as:
Code:
AUDIOPATH=$PLAYLIST/MP3


I wish you'd post the parts of the script that are giving you problems and tell us exactly what the problem is; then maybe we could be of more help.
# 11  
Old 02-16-2010
My problem is im just trying to make my own script.. Im a complete newb.
This course im taking is rammed down our throats i cant learn fedora in 3 weeks. Its just not happening. Im gettin to the point where im just very frusterated. IM trying to go line by line here and understand how to piece this together.
my mp3 are stored in
/home/Fedora11/MP3
playlist will reside in /home/Fedora11
i will mess around more here. and paste back then try again..

---------- Post updated at 04:32 PM ---------- Previous update was at 03:49 PM ----------

OK im trying dif approach now.. I have my menu made up i will take it one step at a time.. Sorry for being a complete newb. If you dont mind me going baby steps that would be great.

Code:
#!/bin/bash
while  :                             #This always returns true (see /bin/true and :)
do
echo -e 'Mp3 Playlist Program:
================================
C)reate Mp3 Playlist
E)dit Mp3 Playlists
D)isplay Mp3 Playlists
G)enerate Mp3 Database
P)lay Mp3
1)Copy Mp3
2)Remove Mp3
Q)uit
Enter your selection ==> \c'

read ANS


case "$ANS" in
c  | C  ) echo e- "Create A Play List? --> \c"
          read CREATEPLAYLIST
          
          echo -e "$CREATEPLAYLIST" >> /home/Fedora11
          ;;

So now i assume i have to make a variable that tells it that CREATEPLAYLIST
does this ??
Code:
mk_playlist()
{



---------- Post updated 02-16-10 at 08:19 AM ---------- Previous update was 02-15-10 at 04:32 PM ----------

anyone??

---------- Post updated at 08:47 AM ---------- Previous update was at 08:19 AM ----------

Quote:
Originally Posted by cfajohnson

I didn't; you did.

You had:
Code:
AUDIOPATH='/home/Fedora11/MP3'

That is the same thing as:
Code:
AUDIOPATH=$PLAYLIST/MP3

I wish you'd post the parts of the script that are giving you problems and tell us exactly what the problem is; then maybe we could be of more help.

ok I now understand what you mean about the Playlist assigining it where it is in reference..
what im stuck on is assigining the command fromt he variable in the menu

Code:
#!/bin/bash


    PLAYLIST='/home/Fedora11'

    mk_playlist()
    {

AUDIOPATH=$PLAYLIST/MP3

find "$AUDIOPATH" -type f -name '*.[Mm][Pp]3' > /home/Fedora11/playlist



while  :                             #This always returns true (see /bin/true and :)
do
echo -e 'Mp3 Playlist Program:
================================
C)reate Mp3 Playlist
E)dit Mp3 Playlists
D)isplay Mp3 Playlists
G)enerate Mp3 Database
P)lay Mp3
1)Copy Mp3
2)Remove Mp3
Q)uit
Enter your selection ==> \c'

read ANS


case "$ANS" in
c  | C  ) echo e- "Create A Play List? --> \c"
          read CREATEPLAYLIST
          
          echo -e "$CREATEPLAYLIST" >> /home/Fedora11
          ;;
esac
done


Last edited by m2dmhot; 02-15-2010 at 05:40 PM..
# 12  
Old 02-16-2010
Quote:
Originally Posted by m2dmhot
what im stuck on is assigining the command fromt he variable in the menu

What command from what variable?

I suggest that you create a separate function for each of the various actions the user may select.
# 13  
Old 02-16-2010
im a newb. i dont have the sligthest clue what your talkin about.. Im at the point where i just gonna give up. You just dont learn this stuff overnight..
# 14  
Old 02-16-2010

Code:
## Functions for each task
create_playlist() { 
  : put appropriate commands here
}

edit_playlist() { 
  : put appropriate commands here
}

delete_playlist() { 
  : put appropriate commands here
}

generate_playlist() { 
  : put appropriate commands here
}

play_mp3() { 
  : put appropriate commands here
}

copy_mp3() { 
  : put appropriate commands here
}

delete_mp3() { 
  : put appropriate commands here
}

## Print menu and execute user's selection
while  :
do
  printf %s '

Mp3 Playlist Program:
================================
C)reate Mp3 Playlist
E)dit Mp3 Playlists
D)isplay Mp3 Playlists
G)enerate Mp3 Database
P)lay Mp3
1)Copy Mp3
2)Remove Mp3
Q)uit
Enter your selection ==> '

  read ANS

  case "$ANS" in
    c|C ) create_playlist ;;
    e|E ) edit_playlist ;;
    d|D ) delete_playlist ;;
    g|G ) generate_playlist ;;
    p|P ) play_mp3 ;;
    1)    copy_mp3 ;;
    2)    delete_mp3 ;;
    q|Q ) exit ;;
  esac
done

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. Shell Programming and Scripting

How to block first bash script until second bash script script launches web server/site?

I'm new to utilities like socat and netcat and I'm not clear if they will do what I need. I have a "compileDeployStartWebServer.sh" script and a "StartBrowser.sh" script that are started by emacs/elisp at the same time in two different processes. I'm using Cygwin bash on Windows 10. My... (3 Replies)
Discussion started by: siegfried
3 Replies

3. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

4. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

5. UNIX for Dummies Questions & Answers

Im new to bash scriping and i found this expression on a bash script what does this mean.

# check host value regex='^(||1|2|25)(\.(||1|2|25)){3}$' if ')" != "" ]; then if ]; then echo host $host not found exit 4 fi elif ]; then echo $host is an invalid host address exit 5 fi espeacailly the top regex part? ---------- Post updated at 06:58 PM ---------- Previous update was... (1 Reply)
Discussion started by: kevin298
1 Replies

6. Shell Programming and Scripting

Run bash script within a bash script

Hi everybody, Lets say, I have two bash scripts named down.sh and up.sh located in two different folders named ~/home/a/ and ~/home/b/ Now I want to write another bash script, located in ~/home/ which runs these other two scripts, so that I only have to execute this one comprehensive script... (1 Reply)
Discussion started by: NBurkhard
1 Replies

7. Shell Programming and Scripting

Bash Script: modify bash

Hey guys, i'm having trouble complete one of my bash scripts I'm hoping to --- 1. Modify bash so that then the user types "ls" the command that is executed is "ls -al" 2. Modify the point of entry in bash when the user accesses it, moving the initial location to /var I've somewhat done #2,... (9 Replies)
Discussion started by: LibRid
9 Replies

8. Shell Programming and Scripting

how to make your bash script run on a machine with csh and bash

hi, i have a script that runs on bash and would like to run it on a machine that has csh and bash. the default setting on that machine is csh. i dont want to change my code to run it with a csh shell. is there any way i can run the script (written in bash) on this machine? in other words is there... (3 Replies)
Discussion started by: npatwardhan
3 Replies

9. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies

10. Shell Programming and Scripting

Why generate "ash and bash" different output for same bash script?

Hi, For my bash script, terminal with bash is generate an OK output and program works right. already, terminal with ash have "line 48: syntax error: Bad substitution" output and program don't work. :confused: (0 Replies)
Discussion started by: s. murat
0 Replies
Login or Register to Ask a Question