Guide 1 - Commands

What commands are available in Perun2? There are plenty of possibilities.

1. You can run some Python program. This page covers everything about using Python.

python3 'c:/path/to/file.py'

2. If you are an advanced user, you can use the command-line interface. For example, to call a program with arguments.

execute `7z x *.zip -o*`

3. The commands written in language Perun2. In some way they are better than Python. They make you avoid the Python's biggest pain: dependency management. This is a plug and play software that just works.

select files

Here are examples of commands.

print files;
select files;
delete files;
drop files;
copy files;
copy files to 'f:/';
hide files;
unhide files;
move files to 'f:/';
rename files to substring(fullname, 3);
open files;
open files with notepad;

And of command arguments.

select 'a.txt';
select 'c:/a/b/c/d.txt';
select '../../a.txt';
select 'a.txt', 'v.txt';
select '*.txt';
select files where not empty;
select directories, 'data.pdf';

To learn more, read the following guide pages.

Next