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 a simple hint #231

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ setlocal DISABLEDELAYEDEXPANSION
c:\path\to\php.exe "c:\path\to\pickle.phar" %*
```

On linux systems, you can create shortcut, so command will be available globally:
Copy link
Collaborator

Choose a reason for hiding this comment

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

Well, that's not a shortcut ;P
You simply need to have pickle in a directory listed in the PATH environment variable, and to be sure it's executable (chmod +x pickle)

Copy link
Author

Choose a reason for hiding this comment

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

Yes, whatever it is called. Just having it available from any location with just typing pickle (instead of usr/pickle as stated in readme) will be nice to have, so, however you like, it will be good if you added in readme, a simple instruction "how to add pickle (with chmod-ed flags)" in PATH.

Copy link
Collaborator

Choose a reason for hiding this comment

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

There's already a note about this: see

And finally you can add it to your path or copy it in /usr/local/bin or your favorite binary directory.

a few lines above.

```sh
$ sudo cp pickle /usr/bin
```

If someone would be kind enough to write an installer script, we would be eternally thankful :)

Introduction
Expand Down