Jump to content

List of all my applications


Recommended Posts

Hello,

 

My first application with the amazing tool Alfred.

Maybe you like it !!!

 

Download at:

 

https://dl.dropboxusercontent.com/u/52300493/List%20off%20all%20applications.alfredworkflow

 

FYI
 

it makes an application list showing on you desktop created in the downloads folder.

 

===========================================================================

 

Script Info

 

 

cd /Applications
 
 
ls *.app | sed '/^$/d' | sed '/Contents/d' | sed 's/\.[^ ]*/ /g' >  ~/Downloads/list.txt
 
open ~/Downloads/list.txt
 
===========================================================================
 

 

Best Regards,

MaMeKeDi

Edited by MaMeKeDi
Link to comment

You should not have the killall Terminal line. Not only the workflow as you’ve built it has no need for a terminal, you’d be potentially closing a terminal window the user might be using. Further, instead of having /Users/mamekedi, you can just have ~ or ${HOME} — both those mean “the user’s home directory”, so if you change them that way, it’ll work for every user “out of the box”.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...