Is there a way I can open the Windows 10 Ubuntu bash without running the ~/.bashrc script?Can I suppress the last-minute 'writing to disk' dialogue when umounting? (bash script)Bash script to open up a terminal and cd into a directoryBash alias permanent <without running bash or . ~/.bashrc>Bash script for multiple tabs program runningIs there a way to run a bash script unattended?Bash script not runningWSL Interoperability: Open Windows 10 applications w/ Bash (Windows Linux Subsystem)Is there any way to make the screensaver stop, while Skype is in progress?How to output commands when running lynx from bash script?Sourcing bash script while running a bash script
Hail hit my roof. Do I need to replace it?
Was it ever illegal to name a pig "Napoleon" in France?
Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?
Can a landlord force all residents to use the landlord's in-house debit card accounts?
How do I explain that I don't want to maintain old projects?
how does the Raspberry Pi PoE shield work?
What is a writing material that persists nearly forever or for a long time?
When I press the space bar it deletes the letters in front of it
Appropriate conduit for several data cables underground over 300' run
How does one acquire an undead eyeball encased in a gem?
How to convert diagonal matrix to rectangular matrix
How was the Shuttle loaded and unloaded from its carrier aircraft?
What could cause the sea level to massively decrease?
Why different specifications for telescopes and binoculars?
Why does Trump want a citizenship question on the census?
What exactly is a "murder hobo"?
Adjust the Table
Estimates on number of topologies on a finite set
Compiler doesn't fail when pushing back a std::unique_ptr into a std::vector
Swapping "Good" and "Bad"
Distance between horizontal tree levels
What factors could lead to bishops establishing monastic armies?
Why does the Antonov AN-225 not have any winglets?
An integral that needs subtitution to be solved.
Is there a way I can open the Windows 10 Ubuntu bash without running the ~/.bashrc script?
Can I suppress the last-minute 'writing to disk' dialogue when umounting? (bash script)Bash script to open up a terminal and cd into a directoryBash alias permanent <without running bash or . ~/.bashrc>Bash script for multiple tabs program runningIs there a way to run a bash script unattended?Bash script not runningWSL Interoperability: Open Windows 10 applications w/ Bash (Windows Linux Subsystem)Is there any way to make the screensaver stop, while Skype is in progress?How to output commands when running lynx from bash script?Sourcing bash script while running a bash script
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I was editing the bash script in my Windows 10 Ubuntu bash and I made a mistake while editing the script, causing my bash to exit upon opening it. Is there a way for me to open the bash without running the actual script or will I have to reinstall it?
command-line bash windows-10 bashrc
New contributor
add a comment |
I was editing the bash script in my Windows 10 Ubuntu bash and I made a mistake while editing the script, causing my bash to exit upon opening it. Is there a way for me to open the bash without running the actual script or will I have to reinstall it?
command-line bash windows-10 bashrc
New contributor
add a comment |
I was editing the bash script in my Windows 10 Ubuntu bash and I made a mistake while editing the script, causing my bash to exit upon opening it. Is there a way for me to open the bash without running the actual script or will I have to reinstall it?
command-line bash windows-10 bashrc
New contributor
I was editing the bash script in my Windows 10 Ubuntu bash and I made a mistake while editing the script, causing my bash to exit upon opening it. Is there a way for me to open the bash without running the actual script or will I have to reinstall it?
command-line bash windows-10 bashrc
command-line bash windows-10 bashrc
New contributor
New contributor
edited 8 hours ago
iii
New contributor
asked 9 hours ago
iiiiii
1134 bronze badges
1134 bronze badges
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should be able to skip loading the default .bashrc
file in WSL in essentially the same way as in "regular" bash:
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the shell is interactive. This option is on by default if
the shell is invoked as sh.
So, open the Windows CMD.exe
and type
wsl.exe -e bash --norc
Once you are in the interactive shell you can revert the changes yo made to the ~/.bashrc
file.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
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
);
);
iii is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1156606%2fis-there-a-way-i-can-open-the-windows-10-ubuntu-bash-without-running-the-bash%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
You should be able to skip loading the default .bashrc
file in WSL in essentially the same way as in "regular" bash:
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the shell is interactive. This option is on by default if
the shell is invoked as sh.
So, open the Windows CMD.exe
and type
wsl.exe -e bash --norc
Once you are in the interactive shell you can revert the changes yo made to the ~/.bashrc
file.
add a comment |
You should be able to skip loading the default .bashrc
file in WSL in essentially the same way as in "regular" bash:
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the shell is interactive. This option is on by default if
the shell is invoked as sh.
So, open the Windows CMD.exe
and type
wsl.exe -e bash --norc
Once you are in the interactive shell you can revert the changes yo made to the ~/.bashrc
file.
add a comment |
You should be able to skip loading the default .bashrc
file in WSL in essentially the same way as in "regular" bash:
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the shell is interactive. This option is on by default if
the shell is invoked as sh.
So, open the Windows CMD.exe
and type
wsl.exe -e bash --norc
Once you are in the interactive shell you can revert the changes yo made to the ~/.bashrc
file.
You should be able to skip loading the default .bashrc
file in WSL in essentially the same way as in "regular" bash:
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the shell is interactive. This option is on by default if
the shell is invoked as sh.
So, open the Windows CMD.exe
and type
wsl.exe -e bash --norc
Once you are in the interactive shell you can revert the changes yo made to the ~/.bashrc
file.
answered 8 hours ago
steeldriversteeldriver
74.8k11 gold badges122 silver badges200 bronze badges
74.8k11 gold badges122 silver badges200 bronze badges
add a comment |
add a comment |
iii is a new contributor. Be nice, and check out our Code of Conduct.
iii is a new contributor. Be nice, and check out our Code of Conduct.
iii is a new contributor. Be nice, and check out our Code of Conduct.
iii is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1156606%2fis-there-a-way-i-can-open-the-windows-10-ubuntu-bash-without-running-the-bash%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