Browse Source
Merge pull request #329 from georgelemental/patch-1
Use printf instead of echo in download function
pull/331/head
Cian Butler
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docs/downloading-files.md
|
|
@ -11,7 +11,7 @@ To take advantage add the following bash function to your `.bashrc` |
|
|
|
|
|
|
|
```bash |
|
|
|
function wetty-download() { |
|
|
|
echo "\033[5i"$(cat /dev/stdin | base64 -w 0)"\033[4i" |
|
|
|
printf "\033[5i"$(cat /dev/stdin | base64 -w 0)"\033[4i" |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|