Orangevolt ANT Tasks » Tasks » Unix related tasks | ||
Example | Example |
unix.link creates a unix soft link by calling the underlying ln command (using the command pattern /bin/ln --backup=numbered -s [target] [file]
).
As the command pattern shows a soft link will be created using numbered backup. Numbered backup means that an existing link will be backed up using numbering.
Name | Description | Required |
file | The link file to create. | yes |
target | The file to link to. | yes |