@[email protected] to [email protected] • 1 year agoWhat is the most destroying command you can type in the Linux terminal?message-square139fedilinkarrow-up1164arrow-down19
arrow-up1155arrow-down1message-squareWhat is the most destroying command you can type in the Linux terminal?@[email protected] to [email protected] • 1 year agomessage-square139fedilink
minus-square@[email protected]linkfedilink2•1 year agolinux rookie here, what’s the command to reverse an alias then? do you just “alias ls ls” to overwrite it?
minus-square@[email protected]linkfedilink4•1 year agoBacklash. \ls would get you regular ls. Note that ls already is aliased on some popular distros with some common flags.
minus-square@[email protected]linkfedilink3•1 year agoYou can use unalias, or you can use a backslash in front of an aliased command or surround it in double quotes to ignore the alias temporarily.
linux rookie here, what’s the command to reverse an alias then? do you just “alias ls ls” to overwrite it?
Backlash. \ls would get you regular ls. Note that ls already is aliased on some popular distros with some common flags.
You can use unalias, or you can use a backslash in front of an aliased command or surround it in double quotes to ignore the alias temporarily.
There’s unalias