linux_常用命令_知识点

linux_常用命令_知识点_第1张图片

vim-anywhere: 在任何地方使用vim编辑器输入文本

                          ->sudo apt-get install curl git vim-gnome xclip 安装响应依赖

                          ->curl -fsSL https://raw.github.com/cknadler/vim-anywhere/master/install | bash 安装vim-anywhere

                          ->ctrl+alt+v 打开vim-anywhere交互窗口编辑文本,:wq 之后内容保存在缓冲区中

                          ->ctrl+v将文本粘贴到任何地方

                          ->~/.vim-anywhere/update 更新vim-anywhere

pipenv: python官方提供的一款包管理工具

                           ->sudo pip install pipenv 安装pipenv及其依赖

                           ->cd 项目目录 pipenv install 启动pipenv(创建两个新文件夹Pipfile和Pipfile.lock)

                           ->pipenv install(uninstall) python包 为项目安装(删除)python包

                           ->pipenv lock 通过更新Pipfile.lock来冻结软件包名称及其版本,以及其依赖关系的列表

                           ->pipenv run python **.py 虚拟环境中运行python代码

shuf: 用于在unix操作系统中生成随机排列

                           ->shuf a.txt >(-o) b.txt 将随机显示内容写入文件

                           ->shuf -n 数字 a.txt 显示文件中的任意几行

                           ->shuf -e 内容1 内容2 ... 随机显示命令行中输入的内容

                           ->shuf -i n1-n2 显示n1到n2之间的随机数

你可能感兴趣的:(Linux,Python)