python 2.7.12 on Linux behaving differently than on Windows
Gregory Ewing
greg.ewing at canterbury.ac.nz
Tue Dec 6 02:12:41 EST 2016
More information about the Python-list mailing list
Tue Dec 6 02:12:41 EST 2016
- Previous message (by thread): python 2.7.12 on Linux behaving differently than on Windows
- Next message (by thread): python 2.7.12 on Linux behaving differently than on Windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Dennis Lee Bieber wrote: > -lm is not a valid file name on the OS's that use - as an option > prefix. It's not invalid -- you can create a file called -lm on a unix system if you want, you just have to be a bit sneaky about how you refer to it: % echo foo > ./-lm % ls -lm % cat ./-lm foo Sane people normally refrain from using such file names, however, because of the hassle of dealing with them. -- Greg
- Previous message (by thread): python 2.7.12 on Linux behaving differently than on Windows
- Next message (by thread): python 2.7.12 on Linux behaving differently than on Windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list