Procházet zdrojové kódy

Merge pull request #97 from eteeselink/patch-1

Add "Windows support" to README
tags/v1.0.0
Andrea Spacca před 5 roky
committed by GitHub
rodič
revize
2bab1af80f
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. +12
    -0
      README.md

+ 12
- 0
README.md Zobrazit soubor

@@ -34,6 +34,18 @@ alias transfer=transfer
$ transfer test.txt
```

### On Windows

Put a file called transfer.cmd somewhere in your PATH with this inside it:
```
@echo off
setlocal
:: use env vars to pass names to PS, to avoid escaping issues
set FN=%~nx1
set FULL=%1
powershell -noprofile -command "$(Invoke-Webrequest -Method put -Infile $Env:FULL https://transfer.sh/$Env:FN).Content"
```

## Usage

Parameter | Description | Value | Env


Načítá se…
Zrušit
Uložit