oriond@lemmy.ml to Asklemmy@lemmy.ml · 2 years agoWhat is the most destroying command you can type in the Linux terminal?message-squaremessage-square130fedilinkarrow-up1151arrow-down19
arrow-up1142arrow-down1message-squareWhat is the most destroying command you can type in the Linux terminal?oriond@lemmy.ml to Asklemmy@lemmy.ml · 2 years agomessage-square130fedilink
minus-squareFIST_FILLET@lemmy.mllinkfedilinkarrow-up2·2 years agolinux rookie here, what’s the command to reverse an alias then? do you just “alias ls ls” to overwrite it?
minus-squaresndrtj@feddit.nllinkfedilinkarrow-up4·2 years agoBacklash. \ls would get you regular ls. Note that ls already is aliased on some popular distros with some common flags.
minus-squareChobbes@lemmy.worldlinkfedilinkarrow-up3·2 years 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