Nano alternative for windows powershell
I am looking for software similar to nano for linux bash but for windows powershell. Is there any built in so I do not have to install something?
EDIT Nano is a text editor that runs within the bash. You can open a text like document (.txt, .c etc) in the bash to edit it on the fly or just view it and close it again.
powershell
add a comment |
I am looking for software similar to nano for linux bash but for windows powershell. Is there any built in so I do not have to install something?
EDIT Nano is a text editor that runs within the bash. You can open a text like document (.txt, .c etc) in the bash to edit it on the fly or just view it and close it again.
powershell
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
1
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
1
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25
add a comment |
I am looking for software similar to nano for linux bash but for windows powershell. Is there any built in so I do not have to install something?
EDIT Nano is a text editor that runs within the bash. You can open a text like document (.txt, .c etc) in the bash to edit it on the fly or just view it and close it again.
powershell
I am looking for software similar to nano for linux bash but for windows powershell. Is there any built in so I do not have to install something?
EDIT Nano is a text editor that runs within the bash. You can open a text like document (.txt, .c etc) in the bash to edit it on the fly or just view it and close it again.
powershell
powershell
edited Jul 9 '15 at 6:25
John Demetriou
asked Jul 8 '15 at 20:14
John DemetriouJohn Demetriou
23731029
23731029
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
1
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
1
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25
add a comment |
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
1
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
1
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
1
1
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
1
1
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25
add a comment |
5 Answers
5
active
oldest
votes
There is now a way to use nano
and vim
with powershell by installing "Bash on Windows". More information on Scott Hanselman blog
From command line you can run
bash -c "vi filename.txt"
bash -c "nano filename.txt"
you can also add those functions to your powershell profile
function vi ($File){
bash -c "vi $File"
}
function nano ($File){
bash -c "nano $File"
}
The blog source where I got the information from
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
add a comment |
The only built-in editor in Windows is Notepad. It should already be in your path, so you can just type notepad something.txt
in the PowerShell console.
If you want console-based editors, there are some here: https://stackoverflow.com/questions/11045077/edit-a-text-file-on-the-console-in-64-bit-windows
A useful thing to do is to make an alias called "edit" (for example) for your favorite text editor. Put something like this in your profile:
set-alias edit "${env:ProgramFiles}Sublime Text 3sublime_text.exe"
1
Newer versions of Windows also havepowershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.
– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:psEdit pathtofile.txt
... To switch back and forth between the editor and powershellctrl + s
andctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
add a comment |
Just install Windows Subsystem for Linux (WSL). Then, type.
wsl nano
or
wsl nano textfilenametoedit.txt
Quotes are not needed.
add a comment |
Nano is available for powershell. If you have the Chocolatey package manager installed in your system you can install nano with:
choco install nano
You can install Chocolatey through the command line with:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
My personal experience is that it nano performs great in Windows 10 but it's really slow to start up the first time in Windows 7.
add a comment |
To add to the answers you've already received, you can have a shell editor in Windows, by installing Vim for windows, from Vim's official page.
https://www.vim.org/download.php
add a 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%2f938093%2fnano-alternative-for-windows-powershell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is now a way to use nano
and vim
with powershell by installing "Bash on Windows". More information on Scott Hanselman blog
From command line you can run
bash -c "vi filename.txt"
bash -c "nano filename.txt"
you can also add those functions to your powershell profile
function vi ($File){
bash -c "vi $File"
}
function nano ($File){
bash -c "nano $File"
}
The blog source where I got the information from
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
add a comment |
There is now a way to use nano
and vim
with powershell by installing "Bash on Windows". More information on Scott Hanselman blog
From command line you can run
bash -c "vi filename.txt"
bash -c "nano filename.txt"
you can also add those functions to your powershell profile
function vi ($File){
bash -c "vi $File"
}
function nano ($File){
bash -c "nano $File"
}
The blog source where I got the information from
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
add a comment |
There is now a way to use nano
and vim
with powershell by installing "Bash on Windows". More information on Scott Hanselman blog
From command line you can run
bash -c "vi filename.txt"
bash -c "nano filename.txt"
you can also add those functions to your powershell profile
function vi ($File){
bash -c "vi $File"
}
function nano ($File){
bash -c "nano $File"
}
The blog source where I got the information from
There is now a way to use nano
and vim
with powershell by installing "Bash on Windows". More information on Scott Hanselman blog
From command line you can run
bash -c "vi filename.txt"
bash -c "nano filename.txt"
you can also add those functions to your powershell profile
function vi ($File){
bash -c "vi $File"
}
function nano ($File){
bash -c "nano $File"
}
The blog source where I got the information from
edited Oct 17 '17 at 3:24
phuclv
9,59363991
9,59363991
answered Oct 17 '17 at 3:12
jonatan bouillonjonatan bouillon
6611
6611
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
add a comment |
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Those smart quotes in your post will become stupid to the shells and cause problems. I've fixed them for you this time
– phuclv
Oct 17 '17 at 3:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
Yes. Since powershell has been updated. Thank you for the updated answer, I swapped the accepted one to yours
– John Demetriou
Oct 17 '17 at 8:25
add a comment |
The only built-in editor in Windows is Notepad. It should already be in your path, so you can just type notepad something.txt
in the PowerShell console.
If you want console-based editors, there are some here: https://stackoverflow.com/questions/11045077/edit-a-text-file-on-the-console-in-64-bit-windows
A useful thing to do is to make an alias called "edit" (for example) for your favorite text editor. Put something like this in your profile:
set-alias edit "${env:ProgramFiles}Sublime Text 3sublime_text.exe"
1
Newer versions of Windows also havepowershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.
– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:psEdit pathtofile.txt
... To switch back and forth between the editor and powershellctrl + s
andctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
add a comment |
The only built-in editor in Windows is Notepad. It should already be in your path, so you can just type notepad something.txt
in the PowerShell console.
If you want console-based editors, there are some here: https://stackoverflow.com/questions/11045077/edit-a-text-file-on-the-console-in-64-bit-windows
A useful thing to do is to make an alias called "edit" (for example) for your favorite text editor. Put something like this in your profile:
set-alias edit "${env:ProgramFiles}Sublime Text 3sublime_text.exe"
1
Newer versions of Windows also havepowershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.
– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:psEdit pathtofile.txt
... To switch back and forth between the editor and powershellctrl + s
andctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
add a comment |
The only built-in editor in Windows is Notepad. It should already be in your path, so you can just type notepad something.txt
in the PowerShell console.
If you want console-based editors, there are some here: https://stackoverflow.com/questions/11045077/edit-a-text-file-on-the-console-in-64-bit-windows
A useful thing to do is to make an alias called "edit" (for example) for your favorite text editor. Put something like this in your profile:
set-alias edit "${env:ProgramFiles}Sublime Text 3sublime_text.exe"
The only built-in editor in Windows is Notepad. It should already be in your path, so you can just type notepad something.txt
in the PowerShell console.
If you want console-based editors, there are some here: https://stackoverflow.com/questions/11045077/edit-a-text-file-on-the-console-in-64-bit-windows
A useful thing to do is to make an alias called "edit" (for example) for your favorite text editor. Put something like this in your profile:
set-alias edit "${env:ProgramFiles}Sublime Text 3sublime_text.exe"
edited May 23 '17 at 12:41
Community♦
1
1
answered Jul 9 '15 at 6:46
dangphdangph
2,83311825
2,83311825
1
Newer versions of Windows also havepowershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.
– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:psEdit pathtofile.txt
... To switch back and forth between the editor and powershellctrl + s
andctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
add a comment |
1
Newer versions of Windows also havepowershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.
– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:psEdit pathtofile.txt
... To switch back and forth between the editor and powershellctrl + s
andctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
1
1
Newer versions of Windows also have
powershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.– Peter Hahndorf
Jul 9 '15 at 7:24
Newer versions of Windows also have
powershell_ise.exe
built-in and in the path. A pretty good editor for PowerShell scripts.– Peter Hahndorf
Jul 9 '15 at 7:24
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
so no built in powershell editor inside the shell? only external programs that run outside of powershell?
– John Demetriou
Jul 9 '15 at 7:30
1
1
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
@John Demetriou, I'm not sure what you mean by "built in" now. There are two stock text editors that come with Windows: Notepad and PowerShell ISE (thanks Peter). If you want a console-based editor, then the link above has some. There is no stock, console-based editor in recent versions of Windows.
– dangph
Jul 9 '15 at 7:43
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
that's what I meant, stock console based editor. ok thanks. I will look in the link you provide and choose. thanks
– John Demetriou
Jul 9 '15 at 7:58
To use the ISE editor:
psEdit pathtofile.txt
... To switch back and forth between the editor and powershell ctrl + s
and ctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
To use the ISE editor:
psEdit pathtofile.txt
... To switch back and forth between the editor and powershell ctrl + s
and ctrl + d
– Kolob Canyon
Jan 17 '17 at 23:54
add a comment |
Just install Windows Subsystem for Linux (WSL). Then, type.
wsl nano
or
wsl nano textfilenametoedit.txt
Quotes are not needed.
add a comment |
Just install Windows Subsystem for Linux (WSL). Then, type.
wsl nano
or
wsl nano textfilenametoedit.txt
Quotes are not needed.
add a comment |
Just install Windows Subsystem for Linux (WSL). Then, type.
wsl nano
or
wsl nano textfilenametoedit.txt
Quotes are not needed.
Just install Windows Subsystem for Linux (WSL). Then, type.
wsl nano
or
wsl nano textfilenametoedit.txt
Quotes are not needed.
answered Jun 20 '18 at 19:46
DaanDaan
1312
1312
add a comment |
add a comment |
Nano is available for powershell. If you have the Chocolatey package manager installed in your system you can install nano with:
choco install nano
You can install Chocolatey through the command line with:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
My personal experience is that it nano performs great in Windows 10 but it's really slow to start up the first time in Windows 7.
add a comment |
Nano is available for powershell. If you have the Chocolatey package manager installed in your system you can install nano with:
choco install nano
You can install Chocolatey through the command line with:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
My personal experience is that it nano performs great in Windows 10 but it's really slow to start up the first time in Windows 7.
add a comment |
Nano is available for powershell. If you have the Chocolatey package manager installed in your system you can install nano with:
choco install nano
You can install Chocolatey through the command line with:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
My personal experience is that it nano performs great in Windows 10 but it's really slow to start up the first time in Windows 7.
Nano is available for powershell. If you have the Chocolatey package manager installed in your system you can install nano with:
choco install nano
You can install Chocolatey through the command line with:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
My personal experience is that it nano performs great in Windows 10 but it's really slow to start up the first time in Windows 7.
answered Jul 17 '18 at 19:13
Albino CordeiroAlbino Cordeiro
1313
1313
add a comment |
add a comment |
To add to the answers you've already received, you can have a shell editor in Windows, by installing Vim for windows, from Vim's official page.
https://www.vim.org/download.php
add a comment |
To add to the answers you've already received, you can have a shell editor in Windows, by installing Vim for windows, from Vim's official page.
https://www.vim.org/download.php
add a comment |
To add to the answers you've already received, you can have a shell editor in Windows, by installing Vim for windows, from Vim's official page.
https://www.vim.org/download.php
To add to the answers you've already received, you can have a shell editor in Windows, by installing Vim for windows, from Vim's official page.
https://www.vim.org/download.php
answered Feb 3 at 21:36
fabio.angiefabio.angie
1
1
add a comment |
add a 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%2f938093%2fnano-alternative-for-windows-powershell%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
I don't know if this works but maybe it's possible to get edit.com off an XP machine and use it in powershell on windows 7. I don't know if Win7 32bit has edit.com but win7 64bit doesn't have edit.com
– barlop
Jul 8 '15 at 22:14
1
Assume someone knows everything about PowerShell and could help you, but doesn't know much about Linux or what Nano may be. Maybe you should describe what you want to do.
– Peter Hahndorf
Jul 9 '15 at 2:45
1
@PeterHahndorf You were right, I edited it
– John Demetriou
Jul 9 '15 at 6:25