Customize the COLORS of your files.??

Customize the COLORS of your files.??

export LS_COLORS=$LS_COLORS;'di=01;33:ln=36'        

In this command, `export` is used to set the `LS_COLORS` environment variable to include the new color setting for directories (`di=0;34`)

The `${LS_COLORS}` at the end ensures that the existing `LS_COLORS` value is preserved.

After executing this command, the directories will be displayed in blue when using the `ls` command.

Again, to make this change persistent, you can add the `export` command to your shell configuration file (e.g., `.bashrc` or `.bash_profile`) so that it is applied every time you start a new shell session.

要查看或添加评论,请登录

Mani Bhaskar Edula的更多文章

  • How is AI Transforming Leadership Roles in 2025?

    How is AI Transforming Leadership Roles in 2025?

    Artificial intelligence is a highly transformative technology. Not just business operations and daily chores, but AI…

  • Why Networking is Important for Entrepreneurs

    Why Networking is Important for Entrepreneurs

    Networking is an essential aspect of entrepreneurship. It’s more than exchanging business cards or making small talk.

  • ?? How to Build Your First Chrome Extension: Dad Jokes Edition

    ?? How to Build Your First Chrome Extension: Dad Jokes Edition

    Want to create a fun Chrome extension that displays random dad jokes? Follow these simple steps and you'll have your…

  • Slack System Designing.

    Slack System Designing.

    The target audience for this article falls into the following roles: Tech workers Students Engineering managers The…

  • CQRS Design Pattern: HLD

    CQRS Design Pattern: HLD

    In this article, we are going to talk about Design Patterns of Microservices architecture which is The CQRS Design…

  • System Designing : Strategy Design Pattern

    System Designing : Strategy Design Pattern

    Intent Strategy is a behavioral design pattern that lets you define a family of algorithms, put each of them into a…

  • System Designing : Composite Pattern Designing

    System Designing : Composite Pattern Designing

    Intent Composite is a structural design pattern that lets you compose objects into tree structures and then work with…

  • System Designing : Decorator Design Pattern

    System Designing : Decorator Design Pattern

    Decorator Design Pattern: Definition: The Decorator Design Pattern is a structural pattern that allows behavior to be…

  • System Designing : Builder Design Pattern

    System Designing : Builder Design Pattern

    Intent Builder is a creational design pattern that lets you construct complex objects step by step. The pattern allows…

  • System Designing : Facade Design Pattern

    System Designing : Facade Design Pattern

    Intent Facade is a structural design pattern that provides a simplified interface to a library, a framework, or any…

社区洞察

其他会员也浏览了