zoukankan      html  css  js  c++  java
  • 常用的windows和软件设置

    ENV

    In Windows, environment variables can be applied in two ways.

    Set modifies the current shell's (the window's) environment values, and the change is available immediately, but it is temporary.

    The change will not affect other shells that are running, and as soon as you close the shell, the new value is lost until such time as you run set again.

    cmd> SET ADDR=127.0.0.1
    cmd> SET TOKEN=ABCD1234
    cmd> SET

    setx modifies the value permanently, which affects all future shells, but does not modify the environment of the shells already running.

    You have to exit the shell and reopen it before the change will be available, but the value will remain modified until you change it again.

    cmd> setx ADDR "127.0.0.1"
    cmd> setx TOKEN "ABCD1234"
    cmd> SET

    if want to check availability if set or not in cmd

    set OPENAI_LOGDIR=path/to/tensorboard/data

    Git:

    List global git config

    git config --global --list

    Edit git global config

    git config --global --edit



  • 相关阅读:
    第一次作业(2)
    第0次作业(2)
    最后一次作业—总结报告
    第八次作业
    第七周作业
    第六周作业
    第四周作业
    第4次作业
    2018c语言第3次作业
    2018c语言第2次作业
  • 原文地址:https://www.cnblogs.com/shawnzxx/p/14649852.html
Copyright © 2011-2022 走看看