博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shell 编程每日100行
阅读量:6716 次
发布时间:2019-06-25

本文共 548 字,大约阅读时间需要 1 分钟。

xiluhua@localhost ~/tscripts $ echo "hello world !"-bash: !": event not foundxiluhua@localhost ~/tscripts $ echo 'hello world !'hello world !xiluhua@localhost ~/tscripts $ echo 'hello world !' >> t1.sh xiluhua@localhost ~/tscripts $ cat t1.sh #!/bin/bashhello world !xiluhua@localhost ~/tscripts $ vi t1.sh xiluhua@localhost ~/tscripts $ chmod +x t1.sh xiluhua@localhost ~/tscripts $ ./t1.sh Hello world !xiluhua@localhost ~/tscripts $ sh t1.sh Hello world !xiluhua@localhost ~/tscripts $ /bin/bash t1.sh Hello world !xiluhua@localhost ~/tscripts $

 

转载地址:http://xakmo.baihongyu.com/

你可能感兴趣的文章
Cronolog 分割 Tomcat8 Catalina.out日志 (转)
查看>>
Linux Platform驱动模型(二) _驱动方法
查看>>
商城系统购物车功能分析实现
查看>>
Java之Builder模式(并用OC实现了这种模式)
查看>>
module_loader.py
查看>>
SFINAE 模板替换失败而非报错的应用
查看>>
Java 反射详解
查看>>
mySQL中replace的用法
查看>>
[Angularjs]处理页面闪烁的方法
查看>>
SQL Server如何固定执行计划
查看>>
MD5骨骼动画模型加载
查看>>
XP 系统如何安装.NET Framework4.0
查看>>
java分页功能代码
查看>>
WinForm------如何修改PanelControl控件背景色
查看>>
Android性能优化第(二)篇---Memory Monitor检测内存泄露
查看>>
linux网络命令
查看>>
.NET Core 2.0及.NET Standard 2.0
查看>>
Makefile生成器,使用C++和Boost实现
查看>>
ITOO之底层关系
查看>>
算法笔记_141:无向图的欧拉回路判断问题(Java)
查看>>