Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

f95 command

Status
Not open for further replies.

Ingeniarius

Technical User
Apr 3, 2010
1
HR
Dear all!
I installed recently Ubuntu 9.10. Since I am reactivating my Fortran usage, I installed gfortran compiler. What suprised me, is that I can compile my code both by using gfortran command and f95 command. How come?
Best regards!
 
They are both the same program. f95 is just a symbolic link to gfortran.

If you type which f95
you will get /usr/bin/f95

Find out what it actually is
Then type ls -l /usr/bin/f95
you will get /usr/bin/f95-> /etc/alternatives/f95

Find out what it actually is
Then type ls -l /etc/alternatives/f95
you will get f95->/usr/bin/gfortran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top