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

Быстрый старт

Создайте директорию object в директории ~/.local/share/irnix и создайте в ней файл method:

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

Содержимое файла method:

#!/bin/bash

echo "Hello $1"

Выдайте права для исполнения файла method:

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

Вызовите метод:

irnix e object.method -- World!

Вывод:

Hello World!