send a file via bluetooth from the command prompt
I'm working with the command prompt and I would like to send a file to my phone. Is it possible to send a file via bluetooth from the command prompt?
windows cmd.exe
add a comment |
I'm working with the command prompt and I would like to send a file to my phone. Is it possible to send a file via bluetooth from the command prompt?
windows cmd.exe
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52
add a comment |
I'm working with the command prompt and I would like to send a file to my phone. Is it possible to send a file via bluetooth from the command prompt?
windows cmd.exe
I'm working with the command prompt and I would like to send a file to my phone. Is it possible to send a file via bluetooth from the command prompt?
windows cmd.exe
windows cmd.exe
edited May 23 '17 at 17:51
DavidPostill♦
106k26228263
106k26228263
asked May 23 '17 at 10:26
Luigi GrimaldiLuigi Grimaldi
12416
12416
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52
add a comment |
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52
add a comment |
1 Answer
1
active
oldest
votes
Is it possible to send a file via bluetooth from the command prompt?
Yes, it is possible. See below for Windows, Ubuntu and Linux solutions.
Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
Use btobex.
Bluetooth command line tools are a suite of command line utilities for
Microsoft Windows that can be used to configure your bluetooth
adapter, discover remote bluetooth devices and services, transfer
files to OBEX capable devices.
All utilities can be invoked as a part of a batch script or other
automated background process or launched manually from the Windows
command prompt.
...
System requirements
- Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
- Microsoft bluetooth stack compatible Bluetooth adapter
Source Bluetooth Command Line Tools
Btobex sends files to remote OBEX capable devices (computers, mobile phones, etc).
usage:
btobex {-bBluetoothAddress | -nFriendlyName} [-cChannel] [-pPIN [-e]]
[-rRetries] [-fFileName] [file1 [file2 [...]]]
-b Bluetooth address of target device in (XX:XX:XX:XX:XX:XX) format.
-n Friendly name of target device.
-c RFCOMM channel (1-30). If specified, service lookup is not performed.
-p PIN code for authenticating with remote device.
-e Use encrypted connection (only if PIN authentication is used)
-r Make specified number of attempts is case of error
-f Use this file name for the data from STDIN (standard input)
-h Prints help screen.
samples:
Send file "picture.jpg" from the current folder to the device named "Nokia 6300" :
btobex -n"Nokia 6300" picture.jpg
Send all text files from the current folder to the device with known address :
btobex -b(11:11:22:22:33:33) *.txt
Send output of other program as a file named "message.txt" :
echo This is a test | btobex -b(11:11:22:22:33:33) -f"message.txt"
btobex maintains the ERRORLEVEL environment variable. Zero means successful execution, any other value - error. Detailed error description is printed to the standard error output.
Source btobex
Ubuntu
Use bluetooth-sendto.
bluetooth-sendto --device=12:34:56:78:9A:BC filename
works for me.
"12:34:56:78:9A:BC" is the Bluetooth device address (bdaddr) of the device. You can get the bdaddr with
hcitool scan
.
Source Bluetooth file transfer in shell script, answer by elmicha
Linux
Use obexftp.
obexftp –nopath –noconn –uuid none –bluetooth <BTAddr> –channel
<OPUSHChann elNo> –put <FileToPut>
- Allows one to send file without specifying the pin on the remote device side
- The OPush channel number for device is got from sdptool above
obexftp -b <BTAddr> -v -p <FileToPut>
- Allows one to put a file onto the specified BT device
- obexftp could also be used to get or list the files on the BT device
- also allows one to identify a nearby BT device by just giving -b option
Source Low-level bluetooth utility, answer by slm
See also Linux script for Bluetooth operation
Disclaimer
I am not affiliated with Bluetooth Command Line Tools in any way.
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1211965%2fsend-a-file-via-bluetooth-from-the-command-prompt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is it possible to send a file via bluetooth from the command prompt?
Yes, it is possible. See below for Windows, Ubuntu and Linux solutions.
Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
Use btobex.
Bluetooth command line tools are a suite of command line utilities for
Microsoft Windows that can be used to configure your bluetooth
adapter, discover remote bluetooth devices and services, transfer
files to OBEX capable devices.
All utilities can be invoked as a part of a batch script or other
automated background process or launched manually from the Windows
command prompt.
...
System requirements
- Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
- Microsoft bluetooth stack compatible Bluetooth adapter
Source Bluetooth Command Line Tools
Btobex sends files to remote OBEX capable devices (computers, mobile phones, etc).
usage:
btobex {-bBluetoothAddress | -nFriendlyName} [-cChannel] [-pPIN [-e]]
[-rRetries] [-fFileName] [file1 [file2 [...]]]
-b Bluetooth address of target device in (XX:XX:XX:XX:XX:XX) format.
-n Friendly name of target device.
-c RFCOMM channel (1-30). If specified, service lookup is not performed.
-p PIN code for authenticating with remote device.
-e Use encrypted connection (only if PIN authentication is used)
-r Make specified number of attempts is case of error
-f Use this file name for the data from STDIN (standard input)
-h Prints help screen.
samples:
Send file "picture.jpg" from the current folder to the device named "Nokia 6300" :
btobex -n"Nokia 6300" picture.jpg
Send all text files from the current folder to the device with known address :
btobex -b(11:11:22:22:33:33) *.txt
Send output of other program as a file named "message.txt" :
echo This is a test | btobex -b(11:11:22:22:33:33) -f"message.txt"
btobex maintains the ERRORLEVEL environment variable. Zero means successful execution, any other value - error. Detailed error description is printed to the standard error output.
Source btobex
Ubuntu
Use bluetooth-sendto.
bluetooth-sendto --device=12:34:56:78:9A:BC filename
works for me.
"12:34:56:78:9A:BC" is the Bluetooth device address (bdaddr) of the device. You can get the bdaddr with
hcitool scan
.
Source Bluetooth file transfer in shell script, answer by elmicha
Linux
Use obexftp.
obexftp –nopath –noconn –uuid none –bluetooth <BTAddr> –channel
<OPUSHChann elNo> –put <FileToPut>
- Allows one to send file without specifying the pin on the remote device side
- The OPush channel number for device is got from sdptool above
obexftp -b <BTAddr> -v -p <FileToPut>
- Allows one to put a file onto the specified BT device
- obexftp could also be used to get or list the files on the BT device
- also allows one to identify a nearby BT device by just giving -b option
Source Low-level bluetooth utility, answer by slm
See also Linux script for Bluetooth operation
Disclaimer
I am not affiliated with Bluetooth Command Line Tools in any way.
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
|
show 1 more comment
Is it possible to send a file via bluetooth from the command prompt?
Yes, it is possible. See below for Windows, Ubuntu and Linux solutions.
Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
Use btobex.
Bluetooth command line tools are a suite of command line utilities for
Microsoft Windows that can be used to configure your bluetooth
adapter, discover remote bluetooth devices and services, transfer
files to OBEX capable devices.
All utilities can be invoked as a part of a batch script or other
automated background process or launched manually from the Windows
command prompt.
...
System requirements
- Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
- Microsoft bluetooth stack compatible Bluetooth adapter
Source Bluetooth Command Line Tools
Btobex sends files to remote OBEX capable devices (computers, mobile phones, etc).
usage:
btobex {-bBluetoothAddress | -nFriendlyName} [-cChannel] [-pPIN [-e]]
[-rRetries] [-fFileName] [file1 [file2 [...]]]
-b Bluetooth address of target device in (XX:XX:XX:XX:XX:XX) format.
-n Friendly name of target device.
-c RFCOMM channel (1-30). If specified, service lookup is not performed.
-p PIN code for authenticating with remote device.
-e Use encrypted connection (only if PIN authentication is used)
-r Make specified number of attempts is case of error
-f Use this file name for the data from STDIN (standard input)
-h Prints help screen.
samples:
Send file "picture.jpg" from the current folder to the device named "Nokia 6300" :
btobex -n"Nokia 6300" picture.jpg
Send all text files from the current folder to the device with known address :
btobex -b(11:11:22:22:33:33) *.txt
Send output of other program as a file named "message.txt" :
echo This is a test | btobex -b(11:11:22:22:33:33) -f"message.txt"
btobex maintains the ERRORLEVEL environment variable. Zero means successful execution, any other value - error. Detailed error description is printed to the standard error output.
Source btobex
Ubuntu
Use bluetooth-sendto.
bluetooth-sendto --device=12:34:56:78:9A:BC filename
works for me.
"12:34:56:78:9A:BC" is the Bluetooth device address (bdaddr) of the device. You can get the bdaddr with
hcitool scan
.
Source Bluetooth file transfer in shell script, answer by elmicha
Linux
Use obexftp.
obexftp –nopath –noconn –uuid none –bluetooth <BTAddr> –channel
<OPUSHChann elNo> –put <FileToPut>
- Allows one to send file without specifying the pin on the remote device side
- The OPush channel number for device is got from sdptool above
obexftp -b <BTAddr> -v -p <FileToPut>
- Allows one to put a file onto the specified BT device
- obexftp could also be used to get or list the files on the BT device
- also allows one to identify a nearby BT device by just giving -b option
Source Low-level bluetooth utility, answer by slm
See also Linux script for Bluetooth operation
Disclaimer
I am not affiliated with Bluetooth Command Line Tools in any way.
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
|
show 1 more comment
Is it possible to send a file via bluetooth from the command prompt?
Yes, it is possible. See below for Windows, Ubuntu and Linux solutions.
Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
Use btobex.
Bluetooth command line tools are a suite of command line utilities for
Microsoft Windows that can be used to configure your bluetooth
adapter, discover remote bluetooth devices and services, transfer
files to OBEX capable devices.
All utilities can be invoked as a part of a batch script or other
automated background process or launched manually from the Windows
command prompt.
...
System requirements
- Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
- Microsoft bluetooth stack compatible Bluetooth adapter
Source Bluetooth Command Line Tools
Btobex sends files to remote OBEX capable devices (computers, mobile phones, etc).
usage:
btobex {-bBluetoothAddress | -nFriendlyName} [-cChannel] [-pPIN [-e]]
[-rRetries] [-fFileName] [file1 [file2 [...]]]
-b Bluetooth address of target device in (XX:XX:XX:XX:XX:XX) format.
-n Friendly name of target device.
-c RFCOMM channel (1-30). If specified, service lookup is not performed.
-p PIN code for authenticating with remote device.
-e Use encrypted connection (only if PIN authentication is used)
-r Make specified number of attempts is case of error
-f Use this file name for the data from STDIN (standard input)
-h Prints help screen.
samples:
Send file "picture.jpg" from the current folder to the device named "Nokia 6300" :
btobex -n"Nokia 6300" picture.jpg
Send all text files from the current folder to the device with known address :
btobex -b(11:11:22:22:33:33) *.txt
Send output of other program as a file named "message.txt" :
echo This is a test | btobex -b(11:11:22:22:33:33) -f"message.txt"
btobex maintains the ERRORLEVEL environment variable. Zero means successful execution, any other value - error. Detailed error description is printed to the standard error output.
Source btobex
Ubuntu
Use bluetooth-sendto.
bluetooth-sendto --device=12:34:56:78:9A:BC filename
works for me.
"12:34:56:78:9A:BC" is the Bluetooth device address (bdaddr) of the device. You can get the bdaddr with
hcitool scan
.
Source Bluetooth file transfer in shell script, answer by elmicha
Linux
Use obexftp.
obexftp –nopath –noconn –uuid none –bluetooth <BTAddr> –channel
<OPUSHChann elNo> –put <FileToPut>
- Allows one to send file without specifying the pin on the remote device side
- The OPush channel number for device is got from sdptool above
obexftp -b <BTAddr> -v -p <FileToPut>
- Allows one to put a file onto the specified BT device
- obexftp could also be used to get or list the files on the BT device
- also allows one to identify a nearby BT device by just giving -b option
Source Low-level bluetooth utility, answer by slm
See also Linux script for Bluetooth operation
Disclaimer
I am not affiliated with Bluetooth Command Line Tools in any way.
Is it possible to send a file via bluetooth from the command prompt?
Yes, it is possible. See below for Windows, Ubuntu and Linux solutions.
Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
Use btobex.
Bluetooth command line tools are a suite of command line utilities for
Microsoft Windows that can be used to configure your bluetooth
adapter, discover remote bluetooth devices and services, transfer
files to OBEX capable devices.
All utilities can be invoked as a part of a batch script or other
automated background process or launched manually from the Windows
command prompt.
...
System requirements
- Windows XP, Windows Vista, Windows 7, Windows 8 or Windows 10 (x86, x64)
- Microsoft bluetooth stack compatible Bluetooth adapter
Source Bluetooth Command Line Tools
Btobex sends files to remote OBEX capable devices (computers, mobile phones, etc).
usage:
btobex {-bBluetoothAddress | -nFriendlyName} [-cChannel] [-pPIN [-e]]
[-rRetries] [-fFileName] [file1 [file2 [...]]]
-b Bluetooth address of target device in (XX:XX:XX:XX:XX:XX) format.
-n Friendly name of target device.
-c RFCOMM channel (1-30). If specified, service lookup is not performed.
-p PIN code for authenticating with remote device.
-e Use encrypted connection (only if PIN authentication is used)
-r Make specified number of attempts is case of error
-f Use this file name for the data from STDIN (standard input)
-h Prints help screen.
samples:
Send file "picture.jpg" from the current folder to the device named "Nokia 6300" :
btobex -n"Nokia 6300" picture.jpg
Send all text files from the current folder to the device with known address :
btobex -b(11:11:22:22:33:33) *.txt
Send output of other program as a file named "message.txt" :
echo This is a test | btobex -b(11:11:22:22:33:33) -f"message.txt"
btobex maintains the ERRORLEVEL environment variable. Zero means successful execution, any other value - error. Detailed error description is printed to the standard error output.
Source btobex
Ubuntu
Use bluetooth-sendto.
bluetooth-sendto --device=12:34:56:78:9A:BC filename
works for me.
"12:34:56:78:9A:BC" is the Bluetooth device address (bdaddr) of the device. You can get the bdaddr with
hcitool scan
.
Source Bluetooth file transfer in shell script, answer by elmicha
Linux
Use obexftp.
obexftp –nopath –noconn –uuid none –bluetooth <BTAddr> –channel
<OPUSHChann elNo> –put <FileToPut>
- Allows one to send file without specifying the pin on the remote device side
- The OPush channel number for device is got from sdptool above
obexftp -b <BTAddr> -v -p <FileToPut>
- Allows one to put a file onto the specified BT device
- obexftp could also be used to get or list the files on the BT device
- also allows one to identify a nearby BT device by just giving -b option
Source Low-level bluetooth utility, answer by slm
See also Linux script for Bluetooth operation
Disclaimer
I am not affiliated with Bluetooth Command Line Tools in any way.
edited May 23 '17 at 11:52
answered May 23 '17 at 10:41
DavidPostill♦DavidPostill
106k26228263
106k26228263
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
|
show 1 more comment
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
This is a great answer, thanks for the work
– cat
May 23 '17 at 14:38
3
3
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
Why is Ubuntu solution separate from Linux one? Won't obexftp work in Ubuntu or bluetooth-sendto on a non-Ubuntu Linux distribution?
– Ruslan
May 23 '17 at 18:09
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
You might want to include the note in the comments to the Ubuntu answer, in your answer's Ubuntu section. Other than that, great answer. Related - superuser.com/questions/1090009/…
– Jonny Henly
May 23 '17 at 19:05
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
@Ruslan No idea. I don't use either of them.
– DavidPostill♦
May 23 '17 at 19:35
1
1
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
@mickeyf One source is an accepted answer on AskUbuntu, the other is a highly upvoted answer from a Unix & Linux mod. The Windows one I have used myself.
– DavidPostill♦
May 23 '17 at 22:03
|
show 1 more comment
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1211965%2fsend-a-file-via-bluetooth-from-the-command-prompt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Command prompt - Windows
– Luigi Grimaldi
May 23 '17 at 12:44
Tags updated...
– DavidPostill♦
May 23 '17 at 17:52