Jump to content

steyep

Member
  • Posts

    6
  • Joined

  • Last visited

  • Days Won

    2

steyep last won the day on May 29 2017

steyep had the most liked content!

Recent Profile Visitors

788 profile views

steyep's Achievements

Helping Hand

Helping Hand (3/5)

5

Reputation

  1. The first issue, that's already been discussed, is the fact that you're outputting the Archive.zip file into the directory that's executing the script. You can prepend the output file name with a directory and you should be good to go. If you're intending to output the zip file into the directory of the file you're compressing, you can access that with dirname. The second issue is that multiple files are passed to the script with a tab delimiter – meaning there will be more than one argument passed to your script so zipping {query} or $1 will only zip the first file. Here's what I would suggest: zip -jrv "$(dirname "$1")/Archive.zip" "$@"
  2. You'll also need to put quotes around the $time variable. Or you could get rid of your variable all together: cat << EOB {"items": [ { "title": "$(date "+%H:%M %p")" } ]} EOB
  3. For the site that you're trying to log in, check the entry in 1Password and make sure you have "Submit when enabled" or "Always submit" as the option for "submit."
  4. Yes. Or that much more concise solution
  5. How about this? workflows="$HOME/Dropbox/Alfred.alfredpreferences/workflows" # Path to your workflows find $workflows -type f -exec sh -c 'grep -q "Alfred 2" "$0" && echo "$0"' "{}" \; You can run this in the terminal to return a list of files containing the string "Alfred 2"
  6. I've noticed a few threads on the forum that integrate Alfred with JIRA but wasn't quite able to find one that did everything I was looking for so I decided to try my hand at writing my own (in Node.js). Here are a few of the features: List issues assigned to you List issues that you are "watching" Search JIRA Assign an issue to a user Transition the status of an issue Quickly add a comment to an issue View an issue's priority Watch/Unwatch an issue Open issue in a web browser I'm still in the process of developing the workflow so I haven't yet created an .alfredworkflow file. That said, if you'd like to install and test the workflow for me, instructions can be found on my github page. If you have suggestions/features those are certainly welcome as well.
×
×
  • Create New...