
Ramdomly Shuffle lines in Sublime Text Editor
If you have a text file and you want to shuffle the lines in the file randomly, you can do that using Sublime Text Editor in the following way,
- Open the file in Sublime Text tab,
- Goto Menu: Edit -> Permute Lines -> Shuffle,
- You should see the lines in the file are suffeled!
Line 1
Line 2
Line 3
Line 4
Line 5
After using the Shuffle Option
Line 4
Line 2
Line 3
Line 1
Line 5
Have Questions? Post them here!
More Posts related to Sublime-Text,
- How to add ruler in Sublime Text tab window
- Change Sublime Text 3 white background color theme
- Replace new line with comma in Sublime Text Editor
- Sublime Text 3 Convert Case to Upper, Lower, Title or Swap
- How to add Multiple Rulers in Sublime Text
- How to install Packages in Sublime Text Editor
- How to display File CR LF Newline Characters in Sublime Text
- Steps to Compare Two files in Sublime Text Side-by-Side
- How to Set Permanent ruler in Sublime Text
- How to shuffle lines randomly in Sublime Text
- Word count in Sublime Text Editor
More Posts:
- How to Get the List of Shells on Linux - Linux
- Android Eclipse This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in - Android
- Android : Remove ListView Separator/divider programmatically or using xml property - Android
- Java JDBC Select Multiple Records from table as List using PreparedStatement - Java
- How to know installed version of Homebrew - MacOS
- Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED - Android
- Redirect page using jQuery - jQuery
- Copy entire directory using Terminal Command [Linux, Mac, Bash] - Linux