Unsort Lines TextMate命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unsort Lines TextMate命令相关的知识,希望对你有一定的参考价值。

Need to "unsort" / randomize / scramble LINES in a text?
Copy source -> then TextMate Bundle Editor -> New Command -> select all in Command(s) -> paste source -> Input: Selected Text or Document -> Output: Replace Selected Text ...
  1. #!/usr/bin/perl -wl
  2.  
  3. @f=<>;
  4.  
  5. for $i (0 .. $#f) {
  6. $r=int rand ($i+1);
  7. @f[$i, $r]=@f[$r,$i] if ($i!=$r);
  8. }
  9.  
  10. chomp @f;
  11.  
  12. print join $/, @f;

以上是关于Unsort Lines TextMate命令的主要内容,如果未能解决你的问题,请参考以下文章

Textmate命令:修剪粘贴

Textmate命令:重复文件

TextMate命令-运行DocTest

从Pastie-Textmate命令获取

TextMate命令段-在窗口标题中显示文档路径

从命令行搜索远程gem,并在textmate中查看详细结果