export ORACLE_BASE=/home/oracle/app export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/dbhome_1 export ORACLE_SID=orcl export PATH=$PATH:$HOME/bin: ...
分类:
其他好文 时间:
2019-04-28 09:43:01
阅读次数:
111
https://www.jianshu.com/p/b50a92afbef1 1、获取Flutter工程 git clone -b beta https://github.com/flutter/flutter.git 2、将flutter加入path 打开.bash_profile(一般在Mac的 ...
分类:
移动开发 时间:
2019-04-22 17:56:20
阅读次数:
262
1、打开Terminal(终端) 2、输入:vi ~/.bash_profile 3、设置PATH:export PATH=/mongodb/bin:$PATH 4、输入::wq //保存并退出vi 5、修改立即生效:source ~/.bash_profile 6、查看环境变量的值:echo $P ...
分类:
其他好文 时间:
2019-04-20 13:18:48
阅读次数:
805
需要备份consulserver上的什么快照备份,不懂是什么东西(什么领事群集?),网上查了备份命令是:consulsnapshotsavebackup.snap(备份的文件名),备份的脚本如下:#!/bin/bash./root/.bash_profile#定义一些变量KEEP_DAYS=30#定义保持时间为30天,用于删除30天之前的备份数据DIR="/home/backups&qu
分类:
系统相关 时间:
2019-04-19 16:27:07
阅读次数:
145
1、下载maven包【apache-maven-3.6.0-bin.zip】 2、解压到准备安装的目录,我的在:/Users/apple/Documents/javasource/apache-maven-3.6.0 3、安装maven 打开命令窗口,编辑: #vim ~/.bash_profile ...
分类:
其他好文 时间:
2019-04-16 01:34:20
阅读次数:
159
mac一般自带python2.7 可以修改 ~/.bash_profile (具体的path取决于你的python3安装路径): ...
分类:
编程语言 时间:
2019-04-14 17:55:50
阅读次数:
259
1. 打开终端,运行sudo vi ~/.bash_profile 2.配置jdk和maven的安装目录,并添加到PATH 3.esc退出vim编辑,:wq保存所有修改 4.运行source ~/.bash_profile 使配置生效 ...
分类:
系统相关 时间:
2019-04-14 12:24:17
阅读次数:
337
which nohup .bash_profile中并source加载 如果没有就安装吧 yum provides */nohup nohup npm run start & nohup ./kibana & ...
分类:
Web程序 时间:
2019-04-10 13:26:52
阅读次数:
167
交互式登陆shell 对于交互式的登陆shell而言,CentOS规定了startup文件的加载顺序如下: 登陆过程: 1. 读取并执行/etc/profile文件; 2. 读取并执行~/.bash_profile文件; - 若文件不存在,则读取并执行~/.bash_login文件; - 若文件不存 ...
分类:
其他好文 时间:
2019-04-10 11:52:52
阅读次数:
119
#最近在学flutter开发,写一篇记录一下安装的过程 1、配置flutter镜像地址 vim ~/.bash_profile 命令行输入后回车,打开.bash_profile配置镜像地址 export PUB_HOSTED_URL=https://pub.flutter-io.cn export ...
分类:
系统相关 时间:
2019-04-02 00:23:20
阅读次数:
227