标签: perl6
如何使用Perl 6创建符号链接?
当然,as mentioned in another question,我可以使用shell或run使用实际的shell命令:
shell
run
shell('ln -s REALLY_LONG_FASTQ_NAME.fastq short.fq'); run('ln', '-s', 'REALLY_LONG_FASTQ_NAME.fastq', 'short.fq');
但是,我更希望能够使用函数更直接地创建它们。
答案 0 :(得分:2)
symlink("original_filename","link_filename");
另见official documentation on symlink。