10

Can someone tell me how to locate the source code for the 'df' command. My operating system is Ocelot.

Thanks!

Luis Alvarado
  • 211,503
Eae
  • 713

2 Answers2

16

First, find out what package the df command comes from. This will turn out to be coreutils.

Then run the command

apt-get source coreutils

to get the source code for the package containing the df command.

Isaiah
  • 59,344
1

df is a part of coreutils package. You can get source either from GNU website or you can get the source package from launchpad

Sergey
  • 43,665