What is the purpose of “paste newlines as carriage returns” in the Terminal app?
In the settings of the Terminal app, in the advanced tab, there is an option to "Paste newlines as carriage returns" which is enabled by default.
What is this good for?
macos terminal command-line
add a comment |
In the settings of the Terminal app, in the advanced tab, there is an option to "Paste newlines as carriage returns" which is enabled by default.
What is this good for?
macos terminal command-line
add a comment |
In the settings of the Terminal app, in the advanced tab, there is an option to "Paste newlines as carriage returns" which is enabled by default.
What is this good for?
macos terminal command-line
In the settings of the Terminal app, in the advanced tab, there is an option to "Paste newlines as carriage returns" which is enabled by default.
What is this good for?
macos terminal command-line
macos terminal command-line
edited Dec 22 '18 at 2:42
bmike♦
161k46289626
161k46289626
asked Dec 22 '18 at 0:32
LoaxLoax
23027
23027
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
What is it good for?
Sometimes you want to paste exactly what you've copied into something...say a document you're editing in nano
or vi
and want to preserve it exactly as it is.
Or, you could want to past the CR
so it executes the command.
Perhaps the default action to pastes exactly what was copied makes more sense than altering a paste buffer before the application processes the clipboard.
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
add a comment |
Converts the ASCII n bytes into r bytes, or line feeds into carriage returns. This way the system ignores any possible UNIX to MAC line-ending confusion when pasting from the Terminal.
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "118"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fapple.stackexchange.com%2fquestions%2f346381%2fwhat-is-the-purpose-of-paste-newlines-as-carriage-returns-in-the-terminal-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
What is it good for?
Sometimes you want to paste exactly what you've copied into something...say a document you're editing in nano
or vi
and want to preserve it exactly as it is.
Or, you could want to past the CR
so it executes the command.
Perhaps the default action to pastes exactly what was copied makes more sense than altering a paste buffer before the application processes the clipboard.
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
add a comment |
What is it good for?
Sometimes you want to paste exactly what you've copied into something...say a document you're editing in nano
or vi
and want to preserve it exactly as it is.
Or, you could want to past the CR
so it executes the command.
Perhaps the default action to pastes exactly what was copied makes more sense than altering a paste buffer before the application processes the clipboard.
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
add a comment |
What is it good for?
Sometimes you want to paste exactly what you've copied into something...say a document you're editing in nano
or vi
and want to preserve it exactly as it is.
Or, you could want to past the CR
so it executes the command.
Perhaps the default action to pastes exactly what was copied makes more sense than altering a paste buffer before the application processes the clipboard.
What is it good for?
Sometimes you want to paste exactly what you've copied into something...say a document you're editing in nano
or vi
and want to preserve it exactly as it is.
Or, you could want to past the CR
so it executes the command.
Perhaps the default action to pastes exactly what was copied makes more sense than altering a paste buffer before the application processes the clipboard.
edited Dec 22 '18 at 2:43
bmike♦
161k46289626
161k46289626
answered Dec 22 '18 at 1:17
AllanAllan
45.8k1468172
45.8k1468172
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
add a comment |
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
Heads up - I removed the side question from the main question. I tried to make your answer make more sense reflecting the change above.
– bmike♦
Dec 22 '18 at 2:44
add a comment |
Converts the ASCII n bytes into r bytes, or line feeds into carriage returns. This way the system ignores any possible UNIX to MAC line-ending confusion when pasting from the Terminal.
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
add a comment |
Converts the ASCII n bytes into r bytes, or line feeds into carriage returns. This way the system ignores any possible UNIX to MAC line-ending confusion when pasting from the Terminal.
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
add a comment |
Converts the ASCII n bytes into r bytes, or line feeds into carriage returns. This way the system ignores any possible UNIX to MAC line-ending confusion when pasting from the Terminal.
Converts the ASCII n bytes into r bytes, or line feeds into carriage returns. This way the system ignores any possible UNIX to MAC line-ending confusion when pasting from the Terminal.
answered Dec 22 '18 at 1:39
Richard BarberRichard Barber
1536
1536
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
add a comment |
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
My understanding is that since many yeas ago Unix and MacOS line endings have become identical and thus there is no room for “confusion”. Please correct me if I’m wrong.
– Loax
Dec 22 '18 at 9:55
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
Terminal has probably d that option since the beginning when most data would be in calssic Mac OS endings - when should the option have been removed
– Mark
Dec 22 '18 at 11:05
add a comment |
Thanks for contributing an answer to Ask Different!
- 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%2fapple.stackexchange.com%2fquestions%2f346381%2fwhat-is-the-purpose-of-paste-newlines-as-carriage-returns-in-the-terminal-app%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