Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My bash shell takes up to 3-4 seconds to start up, while if I start it with --norc it runs immediately.

I started "profiling" /etc/bash.bashrc and ~/.bashrc by manually inserting return statements and seeking for speed improvements, but it is not a quantitative process and it is not efficient.

How can I profile my bash scripts and see which commands take most time to start up?

share|improve this question
I profiled the scripts, and most of the time was spent during the setup of bash_completion. – Andrea Spadaccini Mar 1 '11 at 10:50
That's not surprising since that's pretty big. You could speed that up by removing the parts you know you'll never need if you want to go to the trouble of maintaining your changes across updates, etc. – Dennis Williamson Mar 13 '11 at 14:27

3 Answers

up vote 35 down vote accepted

If you have GNU date (or another version that can output nanoseconds), do this at the beginning of /etc/bash.bashrc:

PS4='+ $(date "+%s.%N")\011 '
exec 3>&2 2>/tmp/bashstart.$$.log
set -x

add

set +x
exec 2>&3 3>&-

at the end of ~/.bashrc.

You should get a trace log in /tmp/bashstart.PID.log that shows the seconds.nanoseconds timestamp of each command that was executed. The difference from one time to the next is the amount of time that the intervening step took.

As you narrow things down, you can move set -x later and set +x earlier (or bracket several sections of interest selectively).

share|improve this answer
Is it normal that the shell prompt is invisible and that my commands are not echoed back? However, I got the trace so I can start the analysis.. thanks a lot! – Andrea Spadaccini Feb 17 '11 at 14:13
@AndreaSpadaccini: The final exec should return fd2 to normal so you should get the prompt back. – Dennis Williamson Feb 17 '11 at 14:44

It often helps to trace the system calls

strace -c -f ./script.sh

From the manual:

-c Count time, calls, and errors for each system call and report a summary on program exit.

-f Trace child processes ...

This is not exactly what you want and what a line-oriented profiler would show to you but it usually helps to find hot spots.

share|improve this answer

You may have a look at trap command with DEBUG condition. There is a way to set a command(s) to be executed along with your commands. See the notes to the answer.

share|improve this answer
Actually, it's before each command. – Dennis Williamson Feb 16 '11 at 15:18
@Dennis Williamson: I haven't used it for a while, but the help on my system states that "If a SIGNAL_SPEC is DEBUG, ARG is executed after every simple command." – user332325 Feb 16 '11 at 15:27
From Bash 4.0.33 help trap: "If a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command." In Bash 3.2, it says "after". That's a typo. As of Bash 2.05b, it's run before. Reference: "This document details the changes between this version, bash-2.05b-alpha1, and the previous version, bash-2.05a-release. ... 3. New Features in Bash ... w. The DEBUG trap is now run before simple commands, ((...)) commands, [[...]] conditional commands, and for ((...)) loops." Testing in each version confirms that it's before. – Dennis Williamson Feb 16 '11 at 16:23
@Dennis Williamson: Ok, then that's what version i have. I fix the answer:) – user332325 Feb 16 '11 at 21:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.