行排序与去重工具
排序行、删除重复项、反转顺序、随机排列以及执行其他行操作。
Input: 1 lines
Line Sorter & Deduplicator - 技术详情
This tool provides various operations on text lines including sorting, deduplication, reversal, shuffling, trimming, and numbering. Useful for processing lists and data.
命令行替代方案
# Sort lines\nsort file.txt\n\n# Remove duplicates\nsort -u file.txt\n\n# Reverse lines\ntac file.txt\n\n# Shuffle lines\nshuf file.txt