Skip to main content
The 2024 Developer Survey results are live! See the results

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 2
    Show output of type dirs.
    – Cyrus
    Commented Jan 6, 2018 at 11:28
  • Thanks @Cyrus - since it's small, I'll post it in this comment: $ type dirs -> dirs is aliased to 'ls -lFS --color', so I get it now: grep dirs ~/.bashrc shows the alias is defined in ~/.bashrc; must I edit the ~/.bashrc, or is there another way to take care of this temporarily in the current bash session? Btw, feel free to post as an answer, I'll accept it.
    – sdaau
    Commented Jan 6, 2018 at 11:32
  • 1
    You can also ignore this alias with a leading backslash at bash's prompt: \dirs -v.
    – Cyrus
    Commented Jan 6, 2018 at 11:41