Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Linus support (beyond OSX support) #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

add Linus support (beyond OSX support) #6

wants to merge 1 commit into from

Conversation

martinjackson
Copy link

open command on Linux attempt to open a new terminal. OSX uses open to view a image or a web page, Linux equivalent is xdg-open.

open command on Linux attempt to open a new terminal.  OSX uses open, Linux uses xdg-open.

unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) xdg-open https://github.com/donavon/hook-flow;;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any way to DRY this up so the URL doesn't have to be repeated 4 times?

@martinjackson
Copy link
Author

Yes, will submit the following...

Something like
URL=http://github.com/donavon/hook-flow

  Darwin*) open $URL
 Linux*) xdg-open $URL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants