Merge pull request #97 from eteeselink/patch-1
Add "Windows support" to README
This commit is contained in:
12
README.md
12
README.md
@ -34,6 +34,18 @@ alias transfer=transfer
|
|||||||
$ transfer test.txt
|
$ 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
|
## Usage
|
||||||
|
|
||||||
Parameter | Description | Value | Env
|
Parameter | Description | Value | Env
|
||||||
|
Reference in New Issue
Block a user