I'm running a pretty simple bash script in ubuntu but have come up with a problem. If needed I'll post the whole script, but I've narrowed down the problem. Basically, I want to run some code every 15 seconds, so I started with this:

time=`date +%S`

time2=$((time%15))

if [ $time2 -eq 0 ]

then

etc, etc, etc....

The problem comes up when time is 08 seconds. The script terminates with Illegal number: 08. Adding to that, when using:

time2=$(($time%15))

instead of the illegal number error, it would terminate with Arithmetic expression: expecting EOF: "08%15"

I'm guessing 08 isn't interpreted as a number. Or there's some base issue, like it thinks it's in octal or something. Any help?

link|improve this question
08 is likely interpreted as octal in most C-style languages and systems. – OregonGhost May 18 '09 at 15:16
@OregonGhost: Indeed. And, more specifically, 08 isn't a valid number in octal, hence the error message. By comparison, that's equivalent to counting in hex and going from 0x0F to 0x0G, i.e. you can't do that ;-) – Mike Spross May 18 '09 at 15:37
feedback

5 Answers

up vote 1 down vote accepted

Shortest solution:

time2=$(( ${time#0} % 15 ))

${var#glob} means "$var with glob removed from the beginning if present".

link|improve this answer
Thank you, that was exactly what I was looking for. – JSintra May 18 '09 at 15:25
feedback

Try using the following flags instead

date +%-S

It says given the -, it won't pad. It has problems with the base, interpreting it as an octal integer.

Anyway, if you want to do something every 15 seconds, i find this one easier to follow:

while ((1)); do 
    echo do something now...
    sleep 15s
done
link|improve this answer
Thanks, I'll take that into account for future work. – JSintra May 18 '09 at 15:30
Why not use it for the current script too? It gets rid of the problem in an elegant way (adding only one char), telling date directly what you want instead of snipping the zero away afterwards. – Johannes Schaub - litb May 18 '09 at 15:33
Oh, I will, but not immediately. When I change to minutes I'll definetly be using your code. – JSintra May 18 '09 at 15:45
1  
GNU coreutils date supports %-S, but I don't see it specified by POSIX, so I'm unsure about its portability. – ephemient May 18 '09 at 19:44
oh, good point about compatibility. He's have to keep an eye on that if he uses "%-S". – Johannes Schaub - litb May 18 '09 at 20:57
feedback

Since you're only interested in "every fifteen seconds" rather than running things on the minute exactly you could use date +%s (lowercase s) which will give you the number of seconds since the start of the epoch. This won't have a leading 0 so your script should run fine.

However, I would wonder about your code in a wider context. If the system is running very slow for some reason it could be possible for the script only be run second 14 and then second 16 meaning it will miss an execution.

It might be worth touching a file when you do whatever it is the script does and then performing your action when then last modified date of the file is 15 or more seconds ago.

link|improve this answer
I know what you mean, some seconds are jumped/ignored. The purpose of this script however was just to test with seconds, because I'll be using this for every 15 minutes. But I'll probably have to check your answer, because I might not want this script constantly running. – JSintra May 18 '09 at 15:28
feedback

That does look like it's interpreting it as octal.

Try date +%S | sed -e 's/^0//'

link|improve this answer
That also worked. – JSintra May 18 '09 at 15:31
feedback

Force Bash to interpret the number in decimal, no matter how many padded zeros:

time2=$((10#$time % 15))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown