After using linux for a month or two, I know what I'm doing now.
When creating programs, using whatever language, I've obviously been using code like this:
$ python test.py
And so if I wanted test.py to read a given file, I would have to use:
$ python test.py something.file
What I'd like to do now, it try and create a command line application, so I can use
$ myapp something.file
A program like the python in $ python test.py, or the nano in $ nano program.pl
But where on earth do I start building applications like these? A bit of web trawling has got me nowhere.
If you can tell me yourself that would be great, but I'll readily accept a bunch of links.
I'm totally open if there's more than one way, I don't really mind what language (an excuse to learn another!) or whatever.