Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


 

How to use the Software Collections version of a runtime program (eg, perl, python) from a script (the alternative process above might be safer since it checks to see if the software collection is installed first)

 
#!/usr/bin/scl enable rh-perl524 -- perl
print "$^V\n";

 

...