Sponsored Content
Full Discussion: Power Hour?
The Lounge What is on Your Mind? Power Hour? Post 302430486 by thedoobieman5 on Thursday 17th of June 2010 08:52:52 PM
Old 06-17-2010
Power Hour?

I had some free time at work today so I decided to get a little practice with my shell scripts (I'm pretty new to the whole UNIX thing).
I'm sure I'm not the only college student here so maybe this code will come in handy for future weekends.

Code:
#!/bin/sh

if [ -z "$1" ]
then
    echo "No playlist splecified"
    exit 1
fi

if [ -n "$2" ]
then
    echo "Too many arguments"
    exit 2
fi

tracks=`osascript -e tell\ application\ \"iTunes\"\ to\ get\ number\ of\ tracks\ in\ playlist\ \"$1\"`

osascript -e tell\ application\ \"iTunes\"\ to\ play\ playlist\ \""$1"\"

for ((i=1; i<="$tracks"; i++ ))
do
    echo and $i\!
    osascript -e 'tell application "iTunes"
                    set player position to ((duration of current track)/2-30)
                end tell'

    sleep 60
    osascript -e 'tell application "iTunes" to next track'
done

echo Now you\'re drunk\!

 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

1 Hour less

set DAY=`date +%y%m%d` set H=`date +%H` set M=`date +%M` mailx -s "$H-Mydata" myemail@mail.com<mydata I am looking to set the current hour to have 1 hour less in the subject header: For example: let's say the system time is 8 I want to have "7-Mydata" not "8-Mydata" Can some1... (6 Replies)
Discussion started by: bobo
6 Replies

2. UNIX for Dummies Questions & Answers

an hour less in 24 hour system

My program: __________________________________ #!/bin/ksh DAY=`date +%y%m%d` H=`date +%H` M=`date +%M` day=`date +%m/%d/%y` let h=$H-1 echo DAY $DAY echo H $H echo M $M echo day $day echo h $h _____________________________________ My result: (3 Replies)
Discussion started by: bobo
3 Replies

3. Shell Programming and Scripting

help in hour grep

i have this script that checks for yesterday date and also specific hour in that ----------------------------------------------------------------- TZ=`date +%Z`+24 ;a=`date +%Y-%m-%d %k` cd logs count=0 for i in DBMaint.log do cat $i | grep $a >> file12.txt done... (0 Replies)
Discussion started by: ali560045
0 Replies

4. Shell Programming and Scripting

Crontab for every minute or every hour

How to set crontab for every minute or every hour (1 Reply)
Discussion started by: kaushik02018
1 Replies

5. Shell Programming and Scripting

Getting the last hour from a log.

I have a log like this: Jan 26 13:59:41 server2 ntpdate: step time server 91.189.94.4 offset 0.065456 sec Jan 26 13:59:41 server2 ntpd: ntpd 4.2.4p8@1.1612-o Fri Aug 6 22:49:54 UTC 2010 (1) Jan 26 13:59:41 server2 ntpd: precision = 1.000 usec Jan 26 13:59:41 server2 ntpd: ntp_io: estimated max... (2 Replies)
Discussion started by: Jotne
2 Replies

6. Shell Programming and Scripting

How to convert 24 hour time to 12 hour timing?

Hi friends, I want to convert 24 hour timing to 12 hour please help me... my data file looks like this.. 13-Nov-2011 13:27:36 15.32044 72.68502 13-Nov-2011 12:08:31 15.31291 72.69807 16-Nov-2011 01:16:54 15.30844 72.74028 15-Nov-2011 20:09:25 15.35096 ... (13 Replies)
Discussion started by: nex_asp
13 Replies

7. Shell Programming and Scripting

How to get next hour?

Hi guys I want any script to get me next hour For example Nexthour.sh 2013022823 It get me result 2013030100 Thanks a lot , I'm using Solaris 10 (5 Replies)
Discussion started by: teefa
5 Replies

8. Shell Programming and Scripting

Write Log per hour

Hi, the follow can add the day time to my Log file My_Log_$(date +%F).log can I add the hour to the end of my log file then my log file will looks like My_Log_07-24:(:confused: (3 Replies)
Discussion started by: Hscript
3 Replies

9. UNIX for Advanced & Expert Users

Want to get average value for each hour

I want to get CPU average value only (not required user CPU & memory) with each hours on individual date. The sample output is below | | | User |Memory| User | Date | Time |CPU %|CPU % | % |Mem % | 03/02/2015|00:00:00| 24.56| 20.66| 89.75| 63.48|... (13 Replies)
Discussion started by: Saravanan_0074
13 Replies
PYTONECTL(1)						      General Commands Manual						      PYTONECTL(1)

NAME
pytonectl - remote control for pytone SYNOPSIS
pytonectl [option] command DESCRIPTION
pytonectl is a commandline remote control for a running PyTone instance. It communicates via Unix Sockets or TCP/IP with the running PyTone. OPTIONS
-h, --help shows this help -s, --server <hostname> connects to PyTone instance on <hostname> -p, --port <port> connect to PyTone Server on given <port> -f, --file <file> connect to PyTone UNIX socket <file> COMMANDS
getplayerinfo show information on the song currently being played playerforward play the next song in the playlist playerpause pause the player playerstart start/unpause the player playertogglepause pause the player, if playing, or play, if paused playerstop stop the player playerratecurrentsong <rating> rate the song currently being played (1<=rating<=5) playlistaddsongs <filenames> add files to end of playlist playlistaddsongtop <filename> play file immediately playlistclear clear the playlist playlistdeleteplayedsongs remove all played songs from the playlist playlistreplay mark all songs in the playlist as unplayed playlistshuffle shuffle the playlist SEE ALSO
The full documentation for PyTone AUTHOR
PyTone was written by Jorg Lehmann <joerg@luga.de>. This manpage was written by Alexander Wirt <formorer@debian.org> for the Debian Distri- bution. pytone 2.0.7 Jan 2004 PYTONECTL(1)
All times are GMT -4. The time now is 10:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy