diff options
author | http://ypid.wordpress.com/ <http://ypid.wordpress.com/@web> | 2014-04-13 16:36:55 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-04-13 16:36:55 +0000 |
commit | 6d17225758f0d5f5d088aee969e73595d1643b3c (patch) | |
tree | 659d895f76a4ee8edd5754f30c409ea2b4546219 | |
parent | 78c1d5aec25ed0f4c04fdc9e213b5c43dd7173d8 (diff) |
Fixed Shebang in script and typo.
-rw-r--r-- | doc/tips/file_manager_integration.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tips/file_manager_integration.mdwn b/doc/tips/file_manager_integration.mdwn index 1a1a557fc..3fea3e98c 100644 --- a/doc/tips/file_manager_integration.mdwn +++ b/doc/tips/file_manager_integration.mdwn @@ -91,10 +91,10 @@ Edit this page and add instructions! If your file manager can run a command on a file, it should be easy to integrate git-annex with it. A simple script will suffice: - #!/bun/sh + #!/bin/sh git-annex get --notify-start --notify-finish -- "$@" The --notify-start and --notify-stop options make git-annex display a desktop notification. This is useful to give the user an indication that their action took effect. Desktop notifications are currently only -implenented for Linux. +implemented for Linux. |