登录的环境变量配置文件
/etc/profile(所有用户生效)
/etc/profile.d/*.sh
~/.bash_profile
~/.bashrc(当前用户生效)
/etc/bashrc
/etc/profile(所有用户生效)
/etc/profile.d/*.sh
~/.bash_profile
~/.bashrc(当前用户生效)
/etc/bashrc
shell简化管理操作
shell命令
命令历史记录,存放在~/.bash_history
文件)
用!!
来执行上一条命令,使用ctrl-r
来搜索命令历史记录
命令和文件补全(按tab键)
命令别名,用alias命令来显示所有命令别名
显示全文free
free -m
-b -k -m:分别以字节(KB、MB)为单位显示内存使用情况
top命令 是Linux下常用的性能分析工具 ,能够实时显示系统中各个进程的资源占用状况
显示全文Erlang的并发是基于进程的。不属于操作系统。
三个基本函数:spawn、send、receive。
spawn创建一个进程
send向某个进程发送消息
receive接收消息
显示全文1、在Erlang shell里编译和执行
2、在命令行提示符界面里编译和执行
erlc hello.erl
erl -noshell -s hello start -s init stop
3、作为Escript运行
#!/user/bin/env escript
main(Args) ->
io:format("hello world~n").
apply(Mod, Func, [Arg1, Arg2, ...])
回调模块mod的func,参数为arg(可以为元组)
内置函数的动态调用
apply(erlang, atom_to_list, [hello]).
"hello"