Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/torch/sys.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0aabb3b676cf6ab46e9aa3464d6bc4cb6b69ea39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Lua *system* package

Note: some functions only work on UNIX systems.

## Dependencies
Torch7 (www.torch.ch)

## Install
```
$ luarocks install sys
```

## Use

```lua
$ torch
> require 'sys'
```

### Time / Clock

```lua
> t = sys.clock()  -- high precision clock (us precision)
> sys.tic()
> -- do something
> t = sys.toc()    -- high precision tic/toc
> sys.sleep(1.5)   -- sleep 1.5 seconds
```

### Paths

```lua
> path,fname = sys.fpath()
```

Always returns the path of the file in which this call is made. Useful
to access local resources (non-lua files).

### Execute

By default, Lua's `os.execute` doesn't pipe its results (stdout). This
function uses popen to pipe its results into a Lua string:

```lua
> res = sys.execute('ls -l')
> print(res)
```

Derived from this, a few commands:

```lua
> print(sys.uname())
linux
```

UNIX-only: shortcuts to run bash commands:

```lua
> ls()
> ll()
> lla()
```

### sys.COLORS

If you'd like print in colours, follow the following snippets of code. Let start by listing the available colours

```lua
$ torch
> for k in pairs(sys.COLORS) do print(k) end
```

Then, we can generate a shortcut `c = sys.COLORS` and use it within a `print`

```lua
> c = sys.COLORS
> print(c.magenta .. 'This ' .. c.red .. 'is ' .. c.yellow .. 'a ' .. c.green .. 'rainbow' .. c.cyan .. '!')
```