10

I ran this command:

sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386

But now I want to remove what I've just installed.

What's the command?

aborted
  • 269

2 Answers2

10

The easiest way would be to edit your command to enter

sudo apt-get remove gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386

Open your terminal window, press up-arrow repeatedly until you see your install command, press left-arrow until the cursor gets to 'install', backspace it out and type 'remove'.

Charles Green
  • 21,859
1

If this is your previous command ,

sudo apt-get install gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386 sni-qt:i386

Then run only,

^install^remove

It replaces install with remove from the previous command and reruns the corrected command.

Syntax:

^bad^good
Avinash Raj
  • 80,446