Quote:
Originally Posted by DTrate
This is a great script! I have no knowledge of Applescript whatsoever, yet I have been able to get it to work.
However, it displays my tags as a (seemingly) random list of words -- is there any way to alphabetize it by modifying the script (or otherwise)?
|
All you have to do is change
Quote:
|
do shell script "grep string " & (quoted form of POSIX path of QuicksilverTags) & " | awk {'print $1'}"
|
To
Quote:
|
do shell script "grep string " & (quoted form of POSIX path of QuicksilverTags) & " | awk {'print $1'} | sort"
|
on the second line of code (a sort pipe is added at the very end).
If you want reverse order, use "sort -r" instead of "sort"