学习笔记之Linux / Shell / QSHELL
shell(计算机壳层)_百度百科
- http://baike.baidu.com/subview/849/15831672.htm
Shell (computing) - Wikipedia, the free encyclopedia
- http://en.wikipedia.org/wiki/Shell_(computing)
- http://en.wikipedia.org/wiki/ISeries_QSHELL
- According to IBM, QSHELL is a “UNIX-like” interface built over OS/400. The commands you issue point to programs in a “QSHELL” library. To use QSHELL, key STRQSH or QSH on an iSeries command line.
- PASE is a “real” UNIX—it is actually AIX. It looks similar to QSHELL, but doesn’t have some of the limitations built into QSHELL. To use PASE, CALL QP2TERM.
- http://baike.baidu.com/view/349664.htm
- AIX(Advanced Interactive eXecutive)是IBM基于AT&T Unix System V开发的一套类UNIX操作系统,运行在IBM专有的Power系列芯片设计的小型机硬件系统之上。
Linux常用命令全称 - 程序员大咖
- https://mp.weixin.qq.com/s/AMnlM75hAMdrSCURZ4QarQ
- https://www.cnblogs.com/wangcp-2014/p/6539035.html
176条DevOps人员常用的linux命令速查表 - 程序员大咖
- https://mp.weixin.qq.com/s/iQBmEzsGxAx4FJq0SBH6Gg
97条 Linux 常用命令总结 - 机器学习算法与Python学习
- https://mp.weixin.qq.com/s/RK_bqt5ihi3jAn9-i1qKtg
- https://zhuanlan.zhihu.com/p/36093355
Linux Shell的18条常用命令整理 - Linux学习
- https://mp.weixin.qq.com/s/mNSXpKzMpMcP3V6Rf6Nzcg
解放你的双手,一个命令帮你减负 - Linux学习
- https://mp.weixin.qq.com/s/EA3MbENrq8jfj0bD40ITNw
如何用 Linux 技巧大大提高工作效率? - CSDN
- https://mp.weixin.qq.com/s/wZ7tqB8EDEduQE-2gtUdFA
vim三种模式下的小技巧 - Linux学习
- https://mp.weixin.qq.com/s/XgKK9kyuaBwF8x4caBULYQ
常用命令
- linux - How does "cat << EOF" work in bash? - Stack Overflow
- unix - mkdir's "-p" option - Stack Overflow
- https://stackoverflow.com/questions/22737933/mkdirs-p-option
- -p, --parents
- no error if existing, make parent directories as needed
- Linux and Unix mv command tutorial with examples | George Ornbo
- pushd and popd - Wikipedia
- https://en.wikipedia.org/wiki/Pushd_and_popd
- In computing,
pushdandpopdare commands used to work with the command line directory stack.
- Linux pushd and popd Command Tutorial for Beginners (3 Examples)
How to extract .tar.gz Files ?
- $ tar xvzf file.tar.gz
- $ tar xvzf file.tar.gz -C /path/to/somedirectory
- How To Extract .tar.gz Files using Linux Command Line - Interserver Tips
How to view the contents of tar.gz file without extracting it ?
- $ tar -tf filename.tar.gz
- How can I view the contents of tar.gz file without extracting from the command-line? - Ask Ubuntu
How to hide and view hidden files / directories ?
- $ mv file .file
- $ ls -al
- $ ll -a
- An Easy Way to Hide Files and Directories in Linux
- https://www.tecmint.com/hide-files-and-directories-in-linux/
- To hide a file or directory from the terminal, simply append a dot . at the start of its name
学习笔记之Linux / Shell / QSHELL的更多相关文章
- 学习笔记之Linux Shell脚本教程:30分钟玩转Shell脚本编程
Linux Shell脚本教程:30分钟玩转Shell脚本编程 http://c.biancheng.net/cpp/shell/
- Linux学习笔记之Linux shell脚本运行出现问题:bash: ./test: bin/sh: bad interpreter: No such file or directory
问题: 在Linux系统中使用“vi test.sh”命令创建.sh文件,保存文件(:wq)并赋予权限(chmod +x test.sh)后,执行(./test.sh),出现问题:“bash: ./t ...
- Linux内核分析第六周学习笔记——分析Linux内核创建一个新进程的过程
Linux内核分析第六周学习笔记--分析Linux内核创建一个新进程的过程 zl + <Linux内核分析>MOOC课程http://mooc.study.163.com/course/U ...
- Hadoop学习笔记之HBase Shell语法练习
Hadoop学习笔记之HBase Shell语法练习 作者:hugengyong 下面我们看看HBase Shell的一些基本操作命令,我列出了几个常用的HBase Shell命令,如下: 名称 命令 ...
- linux学习笔记2 - linux常用命令
转载请标注原链接:http://www.cnblogs.com/xczyd/p/5543731.html 第一篇博客:linux学习笔记1-ubuntu的安装与基本设置 之中,已经介绍了如何安装lin ...
- 【学习笔记】Linux基础(零):预备知识
学习笔记(连载)之Linux系列 Note:本学习笔记源自<鸟哥的Linux私房菜(基础学习篇)>一书,为此书重要内容的摘要和总结,对于一些常识性的知识不再归纳 新型冠状病毒引发的肺炎战& ...
- 大数据学习笔记之Linux基础(一):Linux初窥
文章目录 一.Linux入门概述 1.1 概述 1.2 下载地址 1.3 Linux特点 1.4 Linux和Windows区别 二.VM安装相关 2.1 安装VMWare虚拟机 2.2 安装Cent ...
- Linux学习笔记:使用shell脚本实现ftp的自动上传下载
在 Linux 下可以利用 Shell 实现 ftp 文件的自动上传和下载,封装至 crontab 更可实现定时调度. 1.ftp自动登录批量下载文件 ##### 从ftp服务器上的/home/dat ...
- Linux学习笔记07之shell
shell从广义上分为两类: GUI:GNOME KDE XFACE等 CLI:sh csh bash shell启动:当用户登录完成后,系统会自动启动shelll程序 进程:应用程序的副本,用PID ...
随机推荐
- django中的CBV
CBV介绍 我们在写一个django项目时,通常使用的都是FBV(function base views) 而CBV(class base views)也有它自己的应用场景,比如在写一个按照rest规 ...
- leetcode-956. 最高的广告牌
https://leetcode-cn.com/contest/weekly-contest-114/problems/tallest-billboard/ 给出一个集合,询问能否挑出两个不重叠的子集 ...
- 【转载】koa相关知识(来自官网)
什么是Koa? koa 是由 Express 原班人马打造的,致力于成为一个更小.更富有表现力.更健壮的 Web 框架.使用 koa 编写 web 应用,通过组合不同的 generator,可以免除重 ...
- c#关于捕获错误的问题
一般捕获错误,采用try,catch,但是有时捕获的错误不明朗,完全不知道是什么错误,这是可以取消try,catch调试运行,找到错误后并修正后,再把try,catch加上.
- scp ssh-key连接原理
scp ssh-key连接原理 如何关闭位置解析 vim手动打开ssh的配置文件修改81行和122行,位置解析需要双方都关闭 注意重点部分 ssh特别提醒 22端口信息 连接 ...
- JAVA 根据设置的概率生成随机数
import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; i ...
- Forth 输入流处理
body, table{font-family: 微软雅黑; font-size: 13.5pt} table{border-collapse: collapse; border: solid gra ...
- java语言编写矩阵的四则运算
题目要求如下: 设计程序实现矩阵的四则运算 设计要求: (1) 实现矩阵的四则运算. (2) 考虑实现带变元的矩阵计算. (3)考虑实现矩阵的特征值和特征向量的计算. 我使用java语言写的 目录结构 ...
- BootstrapValidator . select 必须选择一个 .callback . select .option
1.对于: 如果 只是引用 notEmpty , 不起作用. 因为 请选择教师 也是一个 option , 一个选项. 可以使用 callback. 'userId':{ message :'教 ...
- 关于ajax跨域的一些解决方案
1.JSONP方式解决跨域问题 jsonp解决跨域问题是一个比较古老的方案(实际中不推荐使用),当然,在实际项目中如果要使用JSONP,一般会使用JQ等对JSONP进行了封装的类库来进行ajax请求 ...