skim
skim copied to clipboard
Is it possible to sort an input list?
This might be a silly question, but I was wondering if it's possible to sort an input list of choices alphabetically using sk
currently.
for example:
echo 'abc\ntwo\none' | sk
the ideal output would be like:
two
one
> abc
Thanks
Why not let sort
do its job?
$ echo -e 'abc\ntwo\none' | sort | sk`
two
one
> abc