标签: perl
我试图了解perl中switch -s的含义。 什么是-s意味着什么。我试着谷歌,没有找到任何答案。
my $a = 1 * 1024 * 1024; my $b = -s $a;
会有什么价值? (就a而言)
答案 0 :(得分:10)
这取决于名为1048576的文件的内容。
1048576
请参阅the documentation:
-s File has nonzero size (returns size in bytes).