Linux
文章平均质量分 76
jason_deng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux 命令 本地调试
Linux 命令 本地调试 类似 Java 的System.out.println() 直接在命令行上输入如下命令a=$(date +%m%Y)echo $a 输出结果012012 linux的echo命令, 在shell编程中极为常用, 在终端下打印变量value的时候也是常常用到的, 因此有必要了解下echo的用法echo命令的功原创 2012-01-31 15:01:09 · 734 阅读 · 0 评论 -
select_Example
select_Example.sh#!/bin/bashecho "what is your favorites color? pls input the number"select color in "red" "blue" "green" "white" "black" do breakdoneecho "you have selected $color"原创 2012-02-08 10:05:09 · 480 阅读 · 0 评论 -
Linux Shell编程
The original website:http://blog.youkuaiyun.com/yourtommy/article/details/7240477 第一章 Shell编程基础Shell有不同的风格,最常用的包括Bourne Shell(bsh)、Bourne Again Shell(bash)、C Shell(csh)、Korn Shell(ksh)和Perl Shell等转载 2012-02-08 10:08:47 · 847 阅读 · 0 评论 -
Linux Shell编程入门
The original website:http://www.cnblogs.com/suyang/archive/2008/05/18/1201990.html从程序员的角度来看, Shell本身是一种用C语言编写的程序,从用户的角度来看,Shell是用户与Linux操作系统沟通的桥梁。用户既可以输入命令执行,又可以利用 Shell脚本编程,完成更加复杂的操作。在Linux GUI日益转载 2012-02-27 15:52:22 · 720 阅读 · 0 评论 -
Linux script call SQL
callSQL.sh#!/usr/bin/ksh################################################################# Modification History:## Ver. Date By Activity# ----原创 2012-06-18 19:54:33 · 951 阅读 · 0 评论 -
FTP linux shell script
#!/bin/ksh########################################################## argument 1: Buniness Unit# argument 2: File Type# argument 3: File extension#####################################原创 2014-12-22 15:24:04 · 1509 阅读 · 0 评论 -
ftp
#!/bin/ksh########################################################## argument 1: Buniness Unit# argument 2: File Type# argument 3: File extension#####################################原创 2014-12-25 11:38:20 · 968 阅读 · 0 评论
分享