随笔分类 - Shell
摘要:http://www.jcwcn.com/article-31939-1.htmlfile hellohello#!/bin/bash # This is a very simple exampleecho Hello World执行(有三种方式):$bash hello$sh hello$./hello (由于hello文件中第一行指明了/bin/bash文件,系统会调用/bin/bash程序去解释执行)1.2 关于输入、输出和错误输出> 表示输出(标准输出和标准错误输出)重定向符号>> 表示不清除原文件内容,而追加输出。例如:$ ls > ls_result$ ls
阅读全文

浙公网安备 33010602011771号