docs
[mirrors/Programs.git] / misc / eset / lsort.sh
CommitLineData
21c4e167
H
1#!/bin/bash
2
3cat "$1" | while read line; do
4 len=$(echo -n "$line" | wc -c);
5 echo "$len $line";
6done | sort -nr | cut -d ' ' -f 2-
This page took 0.275603 seconds and 4 git commands to generate.