Just a quick question in regards to converting files (python scripts) written for Linux to use FreeBSD.
For example should I just edit every file from
to
or should I just symlink the binary to what it's being called for
?
Thanks
For example should I just edit every file from
Code:
#!/usr/bin/python
Code:
#!/usr/local/bin/python2.7
Code:
ln -s /usr/local/bin/pyhton2.7 /usr/bin/python
Thanks