Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 14, 2015
1 parent 9ada39e commit bd98210
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# osx-trash

> Move files to the trash
> Move files and folders to the trash
Supports [`Put Back`](http://mac-fusion.com/trash-tip-how-to-put-files-back-to-their-original-location/).

Expand All @@ -15,7 +15,7 @@ Requires OS X 10.8 or later.
## Usage

```
$ trash file1 file2 ...
$ trash <path> [...]
```


Expand All @@ -28,7 +28,7 @@ $ ./build

## Related

- [trash](https://github.com/sindresorhus/trash) - Move files to the trash, cross-platform
- [trash](https://github.com/sindresorhus/trash) - Move files and folders to the trash, cross-platform


## License
Expand Down
4 changes: 2 additions & 2 deletions trash.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ int main(int argc, const char *argv[]) {
}

if (argc == 1) {
fputs("Please supply one or more filepaths\n", stderr);
fputs("Specify one or more paths\n", stderr);
return 1;
}

Expand All @@ -30,7 +30,7 @@ int main(int argc, const char *argv[]) {
}

if ([args[1] isEqualToString: @"--help"]) {
puts("Usage: trash filepath...\n\nCreated by Sindre Sorhus");
puts("Usage: trash <path> [...]\n\nCreated by Sindre Sorhus");
return 0;
}

Expand Down

0 comments on commit bd98210

Please sign in to comment.