Sponsored Content
Top Forums Shell Programming and Scripting problem switching to directory using shell script Post 302493390 by methyl on Wednesday 2nd of February 2011 02:37:15 PM
Old 02-02-2011
When you are in the directory called Music , please post the output from the unix command "pwd" to display the tree to the current directory:
Code:
pwd

Please then do the same for the directory containing the script and we should be able to work out how to get from one directory to the other.


Btw. If "Music" is just subdirectory, did you try:
Code:
cd Music

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Mac OS keeps switching between shell types

Whenever I relaunch my terminal application on Mac OS 10.4.6, the shell changes to something different. E.g. I used to work in "sh" and then relaunch, I am suddenly in "bash" mode and none of the most basic commands work anymore. Why can't the unix community agree on one single type of shell?? As... (1 Reply)
Discussion started by: PixelLover
1 Replies

2. Shell Programming and Scripting

Switching workspaces thru shell scr.(Solaris)

Using Solaris CDE environment and want to write a shell script (pref. Korn) which can: Upon invokation opens a dtterm new window (no problems, here, i.e. on how to open one) The new dtterm should be moved by the script to another workspace (consider no one changed the default Solaris naming... (3 Replies)
Discussion started by: baivab
3 Replies

3. Shell Programming and Scripting

switching to another user in shell script...

Hi, I have a shell script in which I need to switch to another user and execute some commands and then come back to the original user. To make it more clear - I have to log in as user root then 'su' to jag - execute a script called backup.sh and then logout and come back to root again.. ... (1 Reply)
Discussion started by: bjagadeesh
1 Replies

4. UNIX for Dummies Questions & Answers

Switching user inside a shell script

Dear All, I want to switch a user inside a shell script.My current user say x and user y to whom i want to switch both have login on the same server,the one on which i want to execute my script on. "I want to do something like this su - y Password should be provided in the script itself.And... (6 Replies)
Discussion started by: navjotmannan
6 Replies

5. Shell Programming and Scripting

Switching user inside a shell script doesn't seem to work

Linux version : Oracle Linux 6.4 Shell : Bash The following script will be run as root. During the execution, it should switch to oracle user and execute few commands. After googling and searching within unix.com , I came up with the following syntax ## Enclosing all commands in double... (7 Replies)
Discussion started by: John K
7 Replies

6. Shell Programming and Scripting

Shell scripting-I need a script which should watch a directory for a file with specific directory

I need a script which should watch a directory for a file with specific directory. If it finds a file in directory, it should search for few specific keyword in the file. if the keyword exists, it should trim string from specific column. The file should be moved to another directory and the a... (8 Replies)
Discussion started by: akashdeepak
8 Replies

7. Shell Programming and Scripting

Switching server in UNIX via shell script (SSH )

Requirement: I am writing a shell script which take some file from say Server1 and I have to execute some command on Server2 then I have to manipulate the data and based on that I have to produce report. Problem:I can schedule the shell script on only one server (Server1 or Server2) So, In the... (3 Replies)
Discussion started by: raks2301
3 Replies

8. Shell Programming and Scripting

Moving Files one directory to another directory shell script

Hi, Could you please assist how to move the gz files which are older than the 90 days from one folder to another folder ,before that it need to check the file system named "nfs" if size is less than 90 or not. If size is above 90 then it shouldn't perform file move and exit the script throwing... (4 Replies)
Discussion started by: venkat918
4 Replies

9. UNIX for Advanced & Expert Users

Problem with shell script while spaces encountered in directory names

Hi, I am having issues with the jar -tf command when I put in the shell script. The command runs fine from the command line as shown below. # jar -tf "./VirtualBox Dropped Files/2016-04-17T20:58:49.129139000Z/hive-exec-0.8.1.jar" But when I put in a shell script(shown below) and the... (10 Replies)
Discussion started by: vinoo128
10 Replies

10. Shell Programming and Scripting

Shell script cannot create directory and move the file to that directory

I have a script, which is checking if file exists and move it to another directory if then mkdir -p ${LOCL_FILES_DIR}/cool_${Today}/monthly mv report_manual_alloc_rpt_A_I_ASSIGNMENT.${Today}*.csv ${LOCL_FILES_DIR}/cool_${Today}/monthly ... (9 Replies)
Discussion started by: digioleg54
9 Replies
pods::SDL::Mixer::Music(3pm)				User Contributed Perl Documentation			      pods::SDL::Mixer::Music(3pm)

NAME
SDL::Mixer::Music - functions for music CATEGORY
Mixer METHODS
load_MUS my $music = SDL::Mixer::Music::load_MUS( $file ); "load_MUS" loads a music file into a "SDL::Mixer::MixMusic" structure. This can be passed to play_music. load_MUS_RW my $music = SDL::Mixer::Music::load_MUS_RW( $rwops ); "load_MUS_RW" does the same like "load_MUS" except that it accepts an SDL::RWOps-object rather than a filename. Example for loading music from a variable: use SDL; use SDL::Mixer; use SDL::Mixer::Music; use SDL::RWOps; [...] my $rwops = SDL::RWOps->new_const_mem( $scalar_holding_music ); my $music = SDL::Mixer::Music::load_MUS( $rwops ); Note: You need at least libSDL_mixer 1.2.7 for this feature. hook_music SDL::Mixer::Music::hook_music( $callback, $position ); This sets up a custom music player function, so you can pass your own audio stream data into the SDL::Mixer. The function will be called with "position" passed into the first parameter when the "callback" is called. The audio stream buffer has to be filled with length bytes of music (2nd parameter). The music player will then be called automatically when the mixer needs it. Music playing will start as soon as this is called. All the music playing and stopping functions have no effect on music after this. Pause and resume will work. Using a custom music player and the internal music player is not possible, the custom music player takes priority. To stop the custom music player call "hook_music()" without arguments. Note: NEVER call "SDL::Mixer" functions, nor SDL::Audio::lock, from a callback function. Note: At program termination also call "SDL::Mixer::Music::hook_music()" to stop this callback. Example: sub callback { my $position = shift; # position (first time its 0, on each call $length is added) my $length = shift; # length of bytes we have to put in stream my @stream = ''; printf("position=%8d, stream length=%6d ", $position, $length); for(my $i = 0; $i < $length; $i++) { push(@stream, (($i + $position) & 0xFF)); } return @stream; } SDL::Mixer::Music::hook_music( 'main::callback', 0 ); hook_music_finished SDL::Mixer::Music::hook_music_finished( 'main::callback' ); This callback is called when music called by e.g. SDL::Mixer::Music::play_music or SDL::Mixer::Music::fade_in_music stops naturally. This happens when the music is over or is fading out. Note: If you play music via SDL::Mixer::Music::hook_music, this callback will never be called. Example: my $music_is_playing = 0; my @music = qw(first.mp3 next.mp3 other.mp3 last.mp3); sub callback { $music_is_playing = 0; } SDL::Mixer::Music::hook_music_finished( 'main::callback' ); foreach my $this_song ( @music ) { SDL::Mixer::Music::play_music( $this_song, 0 ); $music_is_playing = 1; SDL::delay( 100 ) while( $music_is_playing ); } SDL::Mixer::Music::hook_music_finished(); # cleanup get_music_hook_data my $position = SDL::Mixer::Music::get_music_hook_data(); Returns the "position" (first) parameter that will be passed to SDL::Mixer::Music::hook_music's callback. play_music my $play_music = SDL::Mixer::Music::play_music( $mix_music, $loops ); "play_music" plays a given "SDL::Mixer::MixMusic". Passing -1 to $loops will loop the music infinitely. Example: my $music = SDL::Mixer::Music::load_MUS( 'music.mp3' ); unless(SDL::Mixer::Music::play_music($sample_music, -1)) { print("Something went wrong! "); } fade_in_music my $music = SDL::Mixer::Music::fade_in_music( $mix_music, $loops, $ms ); Same as SDL::Mixer::Music::play_music but you can specify the fade-in time by $ms. fade_out_music my $fading_music = SDL::Mixer::Music::fade_out_music( $ms ); "fade_out_music" fades out the music with a duration specified in "ms" in milliseconds. Returns the the number of channels that will be faded out. fading_music my $fading_music = SDL::Mixer::Music::fading_music(); Returns one of the following: o MIX_NO_FADING o MIX_FADING_OUT o MIX_FADING_IN volume_music my $volume_before = SDL::Mixer::Music::volume_music( $new_volume ); "volume_music" set the volume in $new_volume and returns the volume that was set before. Passing "-1" as argument causes only to return the current volume. Volume is between 0 (silence) and "MIX_MAX_VOLUME = 128". Example: # set the music volume to 1/2 maximum, and then check it printf( "volume was : %d ", SDL::Mixer::Music::volume_music( MIX_MAX_VOLUME / 2 ) ); printf( "volume is now : %d ", SDL::Mixer::Music::volume_music( -1 ) ); halt_music SDL::Mixer::Music::halt_music(); Halts the music. pause_music SDL::Mixer::Music::pause_music(); Pauses the music. resume_music SDL::Mixer::Music::resume_music(); Resumes the music. rewind_music SDL::Mixer::Music::rewind_music(); Rewinds the music. set_music_position SDL::Mixer::Music::set_music_position( $position ); Set the position of the currently playing music. The position takes different meanings for different music sources. It only works on the music sources listed below. MOD The double is cast to Uint16 and used for a pattern number in the module. Passing zero is similar to rewinding the song. OGG Jumps to position seconds from the beginning of the song. MP3 Jumps to position seconds from the current position in the stream. So you may want to call SDL::Mixer::Music::rewind_music before this. Does not go in reverse... negative values do nothing. Returns: 0 on success, or "-1" if the codec doesn't support this function. paused_music my $paused = SDL::Mixer::Music::paused_music(); Returns 1 if the music is paused, otherwise 0. playing_music my $playing_music = SDL::Mixer::Music::playing_music(); Returns 1 if the music is playing sound, otherwise 0. It doesn't check if the music is paused. AUTHORS
See "AUTHORS" in SDL. perl v5.14.2 2012-05-28 pods::SDL::Mixer::Music(3pm)
All times are GMT -4. The time now is 04:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy