diff options
Diffstat (limited to 'posts')
-rw-r--r-- | posts/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posts/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.md b/posts/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.md index 9aa540f..6fcb411 100644 --- a/posts/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.md +++ b/posts/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.md @@ -36,7 +36,7 @@ MP4 video off of the camera, automatically. I did not want to download any of the small video formats or actual HTML files. Here's what I used: ```sh -$ wget --recursive --accept "*.MP4" http://10.5.5.9:8080/ +wget --recursive --accept "*.MP4" http://10.5.5.9:8080/ ``` This tells `wget` to download all of the files at the GoPro's address |