what exactly do you want to happen? Are you trying to associate files with a program?
– ZannaApr 25 '18 at 10:47
actually i'm trying to build small scripting language for education purposes and i'm using python as an interpreter but i have no idea how to create an extension for this language files all i got is plain text document (text/plain)
– Ahmed KamalApr 25 '18 at 10:48
2
On Linux, you can call any script file like you want. test.banana will run from the python interpreter if either you run python test.banana (or more likely python3 test.banana, or make the file executable and add the shebang. The extension plays no role whatsoever. Different on windows though.
– Jacob VlijmApr 25 '18 at 10:59
python test.banana
(or more likelypython3 test.banana
, or make the file executable and add the shebang. The extension plays no role whatsoever. Different on windows though. – Jacob Vlijm Apr 25 '18 at 10:59