[root@localhostceshi]#cattest.sh#!/bin/bash#test.shecho"-------------ISFissetto\"-seperator\"------------"IFS="-seperator";#注意seperator前有一个减号(-)foriin"$@";doecho"@‘$i‘";doneforiin"$*";doecho"*‘$i‘";doneecho"-------------ISFissettonull---------------..
分类:
系统相关 时间:
2015-07-29 06:34:45
阅读次数:
154
[root@localhostceshi]#cattest.sh#!/bin/bash#test.shecho"-------------ISFissetto\"-seperator\"------------"IFS="-seperator";#注意seperator前有一个减号(-)foriin"$@";doecho"@‘$i‘";doneforiin"$*";doecho"*‘$i‘";doneecho"-------------ISFissettonull---------------..
分类:
系统相关 时间:
2015-07-29 06:32:56
阅读次数:
149
当我越来越习惯python的编写风格时,我经常会想用bash去遍历一个文件的行,并将读取的行进行处理。
但一个诡异的情况,如果我的文本类似于这样
the first line.
the second line.
the third line.
for line in `cat filename`
do
echo $line
done
当我通过上面的方式遍历文件的每一行,我发现读...
分类:
系统相关 时间:
2015-07-22 18:48:38
阅读次数:
152
代码: script_name parameter1 parameter2 parameter3 ...我們很容易就能猜出 $0 就是代表 shell script 名称(路径)本身,而 $1 就是其后的第一个参数, 依次类推....須得留意的是 IFS 的作用,也就是, 若 IFS 被 quoti...
分类:
系统相关 时间:
2015-07-07 18:59:51
阅读次数:
171
# -*- coding: utf-8 -*-"""Created on Sat Jun 20 19:36:34 2015@author: chaofn"""import os"""这个程序的目的是将linux下/ifs/home/fanchao/Manesh_pdb目录中的所有文件(一共有215个...
分类:
编程语言 时间:
2015-06-20 23:24:49
阅读次数:
230
一 、IFS的介绍Shell 脚本中有个变量叫IFS(Internal Field Seprator) ,内部域分隔符。完整定义是The shell uses the value stored in IFS, which is the space, tab, and newline characte...
分类:
系统相关 时间:
2015-06-13 17:04:47
阅读次数:
502
环境: CentOS 7.01.centos中服务器B挂载服务器A的磁盘服务器A:101,.10.0.1
服务器B:101.10.12.1
前提:保证服务器A、B都有/ifs/data/文件夹
目的:在服务器B上把服务器A的/ifs/data/文件夹挂载到自己的/ifs/data/文件夹下。Step1.编辑服务器A的/etc/exports文件# vi/etc/exports添加下列内容,让其...
分类:
系统相关 时间:
2015-05-28 14:07:27
阅读次数:
206
说明:本文来自李想同学的问题及老男孩的解答后的总结。在整理diff命令的时候,突然奇想diff是比较两个文件不同。那我能不能通过diff把两个文件不同之处比较出来并打印并指明是来自那个文件?下面是我创建两个文件file1和file2,其内容如下[root@lxdata]#catfile1
Iamoldboy,my..
分类:
其他好文 时间:
2015-05-27 10:27:09
阅读次数:
242
http://blog.itpub.net/27181165/viewspace-775820/一 IFS的介绍 Shell 脚本中有个变量叫IFS(Internal Field Seprator) ,内部域分隔符。完整定义是The shell uses the value stored in IF...
分类:
系统相关 时间:
2015-05-22 11:13:45
阅读次数:
251
1,下面有这个例子vi a.txt1 2 3vi a.shecho $1 $2 $3vi c.shaa=`cat a.txt`./a.sh $aash c.sh 1 2 3注意:红色$aa没有加双引号,如果把$aa加上双引号那么$aa就会是一个整体了,所以在这里我们不加双引号,因为默认IFS是以空格...
分类:
其他好文 时间:
2015-05-22 09:26:37
阅读次数:
118