Переглянути джерело

Fix fish alias for busybox systems

While GNU mktemp will handle any number of X's, busybox mktemp (used in Android/Termux and distros like Alpine) insists on exactly 6 of them.
tags/v1.1.2
Different55 4 роки тому
committed by GitHub
джерело
коміт
0b23354473
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      README.md

+ 1
- 1
README.md Переглянути файл

@@ -87,7 +87,7 @@ alias transfer=transfer
function transfer --description 'Upload a file to transfer.sh'
if [ $argv[1] ]
# write to output to tmpfile because of progress bar
set -l tmpfile ( mktemp -t transferXXX )
set -l tmpfile ( mktemp -t transferXXXXXX )
curl --progress-bar --upload-file "$argv[1]" https://transfer.sh/(basename $argv[1]) >> $tmpfile
cat $tmpfile
command rm -f $tmpfile


Завантаження…
Відмінити
Зберегти