[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: REWRITE of " Recovering from _misinstall_ of GRUB 1.98"
From: |
Neal Murphy |
Subject: |
Re: REWRITE of " Recovering from _misinstall_ of GRUB 1.98" |
Date: |
Fri, 17 Feb 2012 14:06:34 -0500 |
User-agent: |
KMail/1.13.5 (Linux/2.6.32-5-686-bigmem; KDE/4.4.5; i686; ; ) |
On Friday 17 February 2012 09:02:17 Richard Owlett wrote:
> Jordan Uggla wrote:
> >> From Ubuntu, "sudo apt-get install mbr&& sudo install-mbr /dev/sdX"
> >
> > where sdX is the drive (*not* partition) containing Windows. This is
> > most likely /dev/sda, but be sure.
>
> Is that one line or two?
> IOW is the double ampersand a continuation "character"?
'&&': 'if true, then'. If the command succeeded, then perform the following
command.
'||' is the opposite: if command failed, then perform the following command.
They're shorthand that can eliminate the verbosity of 'if-then-fi'.