What is a .bashrc file and what does it do? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)permanant way of antlr4 set to workingbash syntax error near token `fi'Root's .bashrc not executing on sudo -iMerging Home Directories Breaks Readline/.bashrc“Can't open” an /opt fileNo files in /etc/skel/ ; Can't restore .bashrcbash: $debian_chroot!-: bad substitutionChanging the value of $HOME in .bashrcmake sudoers use their own history fileSetting PATH in /etc/environment and .bashrc has corrupted the systemEditing bashrc to run a program from the terminalAlias not working as intended in .bashrc, while command does

3 doors, three guards, one stone

Why did the IBM 650 use bi-quinary?

How do I keep my slimes from escaping their pens?

How to align text above triangle figure

Why did the rest of the Eastern Bloc not invade Yugoslavia?

Identifying polygons that intersect with another layer using QGIS?

What's the purpose of writing one's academic biography in the third person?

List *all* the tuples!

Book where humans were engineered with genes from animal species to survive hostile planets

Why is "Consequences inflicted." not a sentence?

String `!23` is replaced with `docker` in command line

Is it fair for a professor to grade us on the possession of past papers?

How to bypass password on Windows XP account?

Fundamental Solution of the Pell Equation

Should I discuss the type of campaign with my players?

Can I cast Passwall to drop an enemy into a 20-foot pit?

Why are Kinder Surprise Eggs illegal in the USA?

What exactly is a "Meth" in Altered Carbon?

If a contract sometimes uses the wrong name, is it still valid?

What causes the vertical darker bands in my photo?

What is Arya's weapon design?

What is the role of the transistor and diode in a soft start circuit?

How to find all the available tools in mac terminal?

Identify plant with long narrow paired leaves and reddish stems



What is a .bashrc file and what does it do?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)permanant way of antlr4 set to workingbash syntax error near token `fi'Root's .bashrc not executing on sudo -iMerging Home Directories Breaks Readline/.bashrc“Can't open” an /opt fileNo files in /etc/skel/ ; Can't restore .bashrcbash: $debian_chroot!-: bad substitutionChanging the value of $HOME in .bashrcmake sudoers use their own history fileSetting PATH in /etc/environment and .bashrc has corrupted the systemEditing bashrc to run a program from the terminalAlias not working as intended in .bashrc, while command does



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








19















I can't seem to find any clear information on what the .bashrc file is and what it does exactly.




Thanks for all the help so far. It seems that this script does everything from coloring, completion, aliases and shell history, etc. Is there anything that does not seem useful?










share|improve this question



















  • 3





    .bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

    – muru
    Oct 24 '14 at 5:00

















19















I can't seem to find any clear information on what the .bashrc file is and what it does exactly.




Thanks for all the help so far. It seems that this script does everything from coloring, completion, aliases and shell history, etc. Is there anything that does not seem useful?










share|improve this question



















  • 3





    .bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

    – muru
    Oct 24 '14 at 5:00













19












19








19


9






I can't seem to find any clear information on what the .bashrc file is and what it does exactly.




Thanks for all the help so far. It seems that this script does everything from coloring, completion, aliases and shell history, etc. Is there anything that does not seem useful?










share|improve this question
















I can't seem to find any clear information on what the .bashrc file is and what it does exactly.




Thanks for all the help so far. It seems that this script does everything from coloring, completion, aliases and shell history, etc. Is there anything that does not seem useful?







bash bashrc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 9 mins ago









codeforester

1157




1157










asked Oct 23 '14 at 18:08









JustinJustin

59651129




59651129







  • 3





    .bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

    – muru
    Oct 24 '14 at 5:00












  • 3





    .bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

    – muru
    Oct 24 '14 at 5:00







3




3





.bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

– muru
Oct 24 '14 at 5:00





.bashrc is one of the many bash conmfiguration files. See the official documentation on Bash Startup Files.

– muru
Oct 24 '14 at 5:00










2 Answers
2






active

oldest

votes


















19














The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. This is what happens when you open a new terminal window by pressing Ctrl+Alt+T, or just open a new terminal tab.



By contrast a terminal session in login mode will ask you for user name and password and execute the ~/.bash_profile script. This is what takes place, for instance, when you log on to a remote system through SSH.



The .bashrc file itself contains a series of configurations for the terminal session. This includes setting up or enabling: colouring, completion, the shell history, command aliases and more. The .bashrc file distributed with Ubuntu is well commented and you will be able to understand most of what it does just by reading it.



You can tweak .bashrc to your liking. Here you can get an example with many extra features.






share|improve this answer

























  • The link is broken.

    – rab
    Jun 5 '16 at 8:16






  • 1





    The link is working.

    – Luís de Sousa
    Jun 5 '16 at 8:28











  • In that page download file is not working.

    – rab
    Jun 5 '16 at 8:56






  • 1





    Both the link and the download work fine

    – M. Becerra
    Feb 22 '17 at 20:09


















5














Question on superuser -What is the .bashrc
file? by @pineapple and answered by @DigitalRoss




Actually, it's bash specifically that reads .bashrc (and
/etc/bash.bashrc). There are lots of different shells.



The bash man page (by Brian Fox and
Chet Ramey; also info page "Bash Startup
Files")
is the authoritative reference:




When an interactive shell that is not
a login shell is started, bash reads
and executes commands from ~/.bashrc,
if that file exists. This may be
inhibited by using the --norc option.
The --rcfile file option will force
bash to read and execute commands from
file instead of ~/.bashrc.



When bash is started
non-interactively, to run a shell
script, for example, it looks for the
variable BASH_ENV in the environment,
expands its value if it appears there,
and uses the expanded value as the
name of a file to read and execute.
Bash behaves as if the following
command were executed:



if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi 


but the value of the PATH variable is not used to search
for the file name.




The file is just shell commands. It is typically used to change
prompts, set environment variables, and define shell procedures.
Traditionally, the file .profile is used for this purpose, but
bash has so many extensions that it needs its own startup file for
users that want to put bashisms
in startup files.



"Not a login shell" means things like script launches and usually
terminal windows started by window managers. Sometimes I set up *nix
systems to have .bashrc and BASH_ENV just source .profile. As
long as you don't stray outside of POSIX shell commands then you will
get the same initialization in any shell.



It's particularly valuable when sh is really bash, which sometimes
happens. To do this use:



. .profile


One reason this is all so complex is because sometimes people put
things that produce output into shell startup files, or they
unconditionally set prompts. This causes lots of problems when running
shell programs and backtick commands within languages, not to mention
system(3) from C programs. The way bash starts up is designed, I
think, to have one file where output and prompt setting is OK and one
file where it isn't. Traditionally, a run-time test would be done to
distinguish interactivity, for example, checking to see if the prompt
is set.







share|improve this answer

























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f540683%2fwhat-is-a-bashrc-file-and-what-does-it-do%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    19














    The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. This is what happens when you open a new terminal window by pressing Ctrl+Alt+T, or just open a new terminal tab.



    By contrast a terminal session in login mode will ask you for user name and password and execute the ~/.bash_profile script. This is what takes place, for instance, when you log on to a remote system through SSH.



    The .bashrc file itself contains a series of configurations for the terminal session. This includes setting up or enabling: colouring, completion, the shell history, command aliases and more. The .bashrc file distributed with Ubuntu is well commented and you will be able to understand most of what it does just by reading it.



    You can tweak .bashrc to your liking. Here you can get an example with many extra features.






    share|improve this answer

























    • The link is broken.

      – rab
      Jun 5 '16 at 8:16






    • 1





      The link is working.

      – Luís de Sousa
      Jun 5 '16 at 8:28











    • In that page download file is not working.

      – rab
      Jun 5 '16 at 8:56






    • 1





      Both the link and the download work fine

      – M. Becerra
      Feb 22 '17 at 20:09















    19














    The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. This is what happens when you open a new terminal window by pressing Ctrl+Alt+T, or just open a new terminal tab.



    By contrast a terminal session in login mode will ask you for user name and password and execute the ~/.bash_profile script. This is what takes place, for instance, when you log on to a remote system through SSH.



    The .bashrc file itself contains a series of configurations for the terminal session. This includes setting up or enabling: colouring, completion, the shell history, command aliases and more. The .bashrc file distributed with Ubuntu is well commented and you will be able to understand most of what it does just by reading it.



    You can tweak .bashrc to your liking. Here you can get an example with many extra features.






    share|improve this answer

























    • The link is broken.

      – rab
      Jun 5 '16 at 8:16






    • 1





      The link is working.

      – Luís de Sousa
      Jun 5 '16 at 8:28











    • In that page download file is not working.

      – rab
      Jun 5 '16 at 8:56






    • 1





      Both the link and the download work fine

      – M. Becerra
      Feb 22 '17 at 20:09













    19












    19








    19







    The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. This is what happens when you open a new terminal window by pressing Ctrl+Alt+T, or just open a new terminal tab.



    By contrast a terminal session in login mode will ask you for user name and password and execute the ~/.bash_profile script. This is what takes place, for instance, when you log on to a remote system through SSH.



    The .bashrc file itself contains a series of configurations for the terminal session. This includes setting up or enabling: colouring, completion, the shell history, command aliases and more. The .bashrc file distributed with Ubuntu is well commented and you will be able to understand most of what it does just by reading it.



    You can tweak .bashrc to your liking. Here you can get an example with many extra features.






    share|improve this answer















    The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. This is what happens when you open a new terminal window by pressing Ctrl+Alt+T, or just open a new terminal tab.



    By contrast a terminal session in login mode will ask you for user name and password and execute the ~/.bash_profile script. This is what takes place, for instance, when you log on to a remote system through SSH.



    The .bashrc file itself contains a series of configurations for the terminal session. This includes setting up or enabling: colouring, completion, the shell history, command aliases and more. The .bashrc file distributed with Ubuntu is well commented and you will be able to understand most of what it does just by reading it.



    You can tweak .bashrc to your liking. Here you can get an example with many extra features.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Oct 24 '14 at 5:51

























    answered Oct 23 '14 at 18:30









    Luís de SousaLuís de Sousa

    9,3051752104




    9,3051752104












    • The link is broken.

      – rab
      Jun 5 '16 at 8:16






    • 1





      The link is working.

      – Luís de Sousa
      Jun 5 '16 at 8:28











    • In that page download file is not working.

      – rab
      Jun 5 '16 at 8:56






    • 1





      Both the link and the download work fine

      – M. Becerra
      Feb 22 '17 at 20:09

















    • The link is broken.

      – rab
      Jun 5 '16 at 8:16






    • 1





      The link is working.

      – Luís de Sousa
      Jun 5 '16 at 8:28











    • In that page download file is not working.

      – rab
      Jun 5 '16 at 8:56






    • 1





      Both the link and the download work fine

      – M. Becerra
      Feb 22 '17 at 20:09
















    The link is broken.

    – rab
    Jun 5 '16 at 8:16





    The link is broken.

    – rab
    Jun 5 '16 at 8:16




    1




    1





    The link is working.

    – Luís de Sousa
    Jun 5 '16 at 8:28





    The link is working.

    – Luís de Sousa
    Jun 5 '16 at 8:28













    In that page download file is not working.

    – rab
    Jun 5 '16 at 8:56





    In that page download file is not working.

    – rab
    Jun 5 '16 at 8:56




    1




    1





    Both the link and the download work fine

    – M. Becerra
    Feb 22 '17 at 20:09





    Both the link and the download work fine

    – M. Becerra
    Feb 22 '17 at 20:09













    5














    Question on superuser -What is the .bashrc
    file? by @pineapple and answered by @DigitalRoss




    Actually, it's bash specifically that reads .bashrc (and
    /etc/bash.bashrc). There are lots of different shells.



    The bash man page (by Brian Fox and
    Chet Ramey; also info page "Bash Startup
    Files")
    is the authoritative reference:




    When an interactive shell that is not
    a login shell is started, bash reads
    and executes commands from ~/.bashrc,
    if that file exists. This may be
    inhibited by using the --norc option.
    The --rcfile file option will force
    bash to read and execute commands from
    file instead of ~/.bashrc.



    When bash is started
    non-interactively, to run a shell
    script, for example, it looks for the
    variable BASH_ENV in the environment,
    expands its value if it appears there,
    and uses the expanded value as the
    name of a file to read and execute.
    Bash behaves as if the following
    command were executed:



    if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi 


    but the value of the PATH variable is not used to search
    for the file name.




    The file is just shell commands. It is typically used to change
    prompts, set environment variables, and define shell procedures.
    Traditionally, the file .profile is used for this purpose, but
    bash has so many extensions that it needs its own startup file for
    users that want to put bashisms
    in startup files.



    "Not a login shell" means things like script launches and usually
    terminal windows started by window managers. Sometimes I set up *nix
    systems to have .bashrc and BASH_ENV just source .profile. As
    long as you don't stray outside of POSIX shell commands then you will
    get the same initialization in any shell.



    It's particularly valuable when sh is really bash, which sometimes
    happens. To do this use:



    . .profile


    One reason this is all so complex is because sometimes people put
    things that produce output into shell startup files, or they
    unconditionally set prompts. This causes lots of problems when running
    shell programs and backtick commands within languages, not to mention
    system(3) from C programs. The way bash starts up is designed, I
    think, to have one file where output and prompt setting is OK and one
    file where it isn't. Traditionally, a run-time test would be done to
    distinguish interactivity, for example, checking to see if the prompt
    is set.







    share|improve this answer





























      5














      Question on superuser -What is the .bashrc
      file? by @pineapple and answered by @DigitalRoss




      Actually, it's bash specifically that reads .bashrc (and
      /etc/bash.bashrc). There are lots of different shells.



      The bash man page (by Brian Fox and
      Chet Ramey; also info page "Bash Startup
      Files")
      is the authoritative reference:




      When an interactive shell that is not
      a login shell is started, bash reads
      and executes commands from ~/.bashrc,
      if that file exists. This may be
      inhibited by using the --norc option.
      The --rcfile file option will force
      bash to read and execute commands from
      file instead of ~/.bashrc.



      When bash is started
      non-interactively, to run a shell
      script, for example, it looks for the
      variable BASH_ENV in the environment,
      expands its value if it appears there,
      and uses the expanded value as the
      name of a file to read and execute.
      Bash behaves as if the following
      command were executed:



      if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi 


      but the value of the PATH variable is not used to search
      for the file name.




      The file is just shell commands. It is typically used to change
      prompts, set environment variables, and define shell procedures.
      Traditionally, the file .profile is used for this purpose, but
      bash has so many extensions that it needs its own startup file for
      users that want to put bashisms
      in startup files.



      "Not a login shell" means things like script launches and usually
      terminal windows started by window managers. Sometimes I set up *nix
      systems to have .bashrc and BASH_ENV just source .profile. As
      long as you don't stray outside of POSIX shell commands then you will
      get the same initialization in any shell.



      It's particularly valuable when sh is really bash, which sometimes
      happens. To do this use:



      . .profile


      One reason this is all so complex is because sometimes people put
      things that produce output into shell startup files, or they
      unconditionally set prompts. This causes lots of problems when running
      shell programs and backtick commands within languages, not to mention
      system(3) from C programs. The way bash starts up is designed, I
      think, to have one file where output and prompt setting is OK and one
      file where it isn't. Traditionally, a run-time test would be done to
      distinguish interactivity, for example, checking to see if the prompt
      is set.







      share|improve this answer



























        5












        5








        5







        Question on superuser -What is the .bashrc
        file? by @pineapple and answered by @DigitalRoss




        Actually, it's bash specifically that reads .bashrc (and
        /etc/bash.bashrc). There are lots of different shells.



        The bash man page (by Brian Fox and
        Chet Ramey; also info page "Bash Startup
        Files")
        is the authoritative reference:




        When an interactive shell that is not
        a login shell is started, bash reads
        and executes commands from ~/.bashrc,
        if that file exists. This may be
        inhibited by using the --norc option.
        The --rcfile file option will force
        bash to read and execute commands from
        file instead of ~/.bashrc.



        When bash is started
        non-interactively, to run a shell
        script, for example, it looks for the
        variable BASH_ENV in the environment,
        expands its value if it appears there,
        and uses the expanded value as the
        name of a file to read and execute.
        Bash behaves as if the following
        command were executed:



        if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi 


        but the value of the PATH variable is not used to search
        for the file name.




        The file is just shell commands. It is typically used to change
        prompts, set environment variables, and define shell procedures.
        Traditionally, the file .profile is used for this purpose, but
        bash has so many extensions that it needs its own startup file for
        users that want to put bashisms
        in startup files.



        "Not a login shell" means things like script launches and usually
        terminal windows started by window managers. Sometimes I set up *nix
        systems to have .bashrc and BASH_ENV just source .profile. As
        long as you don't stray outside of POSIX shell commands then you will
        get the same initialization in any shell.



        It's particularly valuable when sh is really bash, which sometimes
        happens. To do this use:



        . .profile


        One reason this is all so complex is because sometimes people put
        things that produce output into shell startup files, or they
        unconditionally set prompts. This causes lots of problems when running
        shell programs and backtick commands within languages, not to mention
        system(3) from C programs. The way bash starts up is designed, I
        think, to have one file where output and prompt setting is OK and one
        file where it isn't. Traditionally, a run-time test would be done to
        distinguish interactivity, for example, checking to see if the prompt
        is set.







        share|improve this answer















        Question on superuser -What is the .bashrc
        file? by @pineapple and answered by @DigitalRoss




        Actually, it's bash specifically that reads .bashrc (and
        /etc/bash.bashrc). There are lots of different shells.



        The bash man page (by Brian Fox and
        Chet Ramey; also info page "Bash Startup
        Files")
        is the authoritative reference:




        When an interactive shell that is not
        a login shell is started, bash reads
        and executes commands from ~/.bashrc,
        if that file exists. This may be
        inhibited by using the --norc option.
        The --rcfile file option will force
        bash to read and execute commands from
        file instead of ~/.bashrc.



        When bash is started
        non-interactively, to run a shell
        script, for example, it looks for the
        variable BASH_ENV in the environment,
        expands its value if it appears there,
        and uses the expanded value as the
        name of a file to read and execute.
        Bash behaves as if the following
        command were executed:



        if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi 


        but the value of the PATH variable is not used to search
        for the file name.




        The file is just shell commands. It is typically used to change
        prompts, set environment variables, and define shell procedures.
        Traditionally, the file .profile is used for this purpose, but
        bash has so many extensions that it needs its own startup file for
        users that want to put bashisms
        in startup files.



        "Not a login shell" means things like script launches and usually
        terminal windows started by window managers. Sometimes I set up *nix
        systems to have .bashrc and BASH_ENV just source .profile. As
        long as you don't stray outside of POSIX shell commands then you will
        get the same initialization in any shell.



        It's particularly valuable when sh is really bash, which sometimes
        happens. To do this use:



        . .profile


        One reason this is all so complex is because sometimes people put
        things that produce output into shell startup files, or they
        unconditionally set prompts. This causes lots of problems when running
        shell programs and backtick commands within languages, not to mention
        system(3) from C programs. The way bash starts up is designed, I
        think, to have one file where output and prompt setting is OK and one
        file where it isn't. Traditionally, a run-time test would be done to
        distinguish interactivity, for example, checking to see if the prompt
        is set.








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 20 '17 at 10:18









        Community

        1




        1










        answered Oct 23 '14 at 18:19









        αғsнιηαғsнιη

        25k23100162




        25k23100162



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f540683%2fwhat-is-a-bashrc-file-and-what-does-it-do%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

            Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

            Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»