10

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

Thanks!

Luis Alvarado
  • 216,643
Eae
  • 763

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
  • 60,750
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
  • 44,353