```sh
var = touch file
```
This command will create an empty file and return true/false if the file exists.<br>
If file exits, it will not be modified.
The file path.
If the file exists after the command, it will return true.<br>
In case of any error, it will return false.
```sh
exists = touch ./dir/file.txt
```