Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quick Start

Create an object directory inside ~/.local/share/irnix and add a file named method there:

~/.local/share/irnix
└── object
    └── method

Contents of the method file:

#!/bin/bash

echo "Hello $1"

Give the file executable permissions:

chmod +x ~/.local/share/irnix/object/method

Invoke the method:

irnix e object.method -- World!

Output:

Hello World!