ChinaUnix.net
相关文章推荐:

shell 连接字符串

1。如何实现两个字符串连接 比如:a=aa b=bb c=aabb 2.如何实现一个函数的返回值赋给一个变量 急阿,请各位大虾帮忙

by waterrain - Shell - 2008-06-16 11:07:51 阅读(31927) 回复(5)

相关讨论

如果我要在 status.bin | awk '{print $1}' | tail -1 中加一个时间怎么加 现在返回 -ipi-------------------------- 我相返回 2006-03-22 01:00:27 -ipi-------------------------- 如何实现

by jun573 - Shell - 2006-03-23 09:59:51 阅读(3073) 回复(4)

比如一个变量是 url = "http://www.domain.com/my.php?id=" 另外一个变量是 id = 1, 这个数值用循环变化。这样两个变量连接 起来就得到类似“http://www.domain.com/my.php?id=100"的地址 用wget来下载。我不熟悉shell,怎么实现了,多谢!

by xiongzm - Shell - 2006-05-25 15:40:03 阅读(9349) 回复(5)
by todayhero - Shell - 2009-01-19 22:16:43 阅读(2483) 回复(8)

在文件table.list中有如下内容, cat table.list ./tempdata/s_job_chain.txt ./tempdata/s_entity_info.txt ./tempdata/s_db_info.txt ./tempdata/s_job_cost.txt ./tempdata/s_datamng_log.txt ./tempdata/s_audit_rule.txt ./tempdata/s_cnode_stat.txt ./tempdata/s_instance_stat.txt ./tempdata/h_instance_info.txt ./tempdata/s_ds_jobparam.txt ./tempdata/s_job_attr.txt ./tempdata/h_job_info.txt ./tempdata/s_refer_...

by legone2008 - Shell - 2008-08-29 02:18:17 阅读(6626) 回复(8)

"2008-4-2" 怎样变成 2008-4-2 也就是把分号去掉

by qwldcl - Shell - 2008-05-19 13:35:25 阅读(3496) 回复(10)

关于shell中的字符串。 比如 #test="abc def" 现在要得到"abc"怎么做呢? #echo ${test%% *} abc 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17004/showart_469647.html

by shiwudao - HP文档中心 - 2008-01-22 22:52:17 阅读(1563) 回复(0)

我的系统是redhat linux9.0 1 所有数据存放在mysql数据库中 2 把数据库中的数据变成文本数据,便于shell处理 但我现在遇到了下面的问题: 我使用了$mysql_path/mysql -u$mysql_user -p$mysql_password -e "use $mysql_database; $sql_switch"|sed 1d|sed 's/ //g'后,还会得到如下结果: 10.10.1.26 | 1 | public | Uplink_10.10.1.15| 我发现,它们之间不是空格,而是tab或是别的字符来的...

by netpat - Shell - 2005-04-01 15:25:45 阅读(1114) 回复(2)

有4个字符串,wks,adm,jm1,jm2.想用for循环来做,当 i 为wks时候做..当 i 为 adm时候做, for i in "wks" "adm" "jm1" "jm2" do ..... done 可以么 ,或用其他的方法

by zhangpiwang - Shell - 2003-10-20 23:50:28 阅读(1823) 回复(16)

文件 init.xml 0 0 0 0 0 脚本: #!/bin/sh ipfile="init.xml" tcp=`grep tcp $ipfile |sed -e "s@@@" -e "s@@@"` udp=`grep udp $ipfile |sed -e "s@@@" -e "s@@@"` tns=`grep tns $ipfile |sed -e "s@@@" -e "s@@@"` ftp=`grep ftp $ipfile |sed -e "s@@@" -e "s@@@"` socks=`grep socks $ip...

by starxing - Shell - 2009-07-22 15:58:41 阅读(1603) 回复(7)

如何写搜索字符串高的效率: exp: file1 : 2W 条记录,每条记录为长度不一的单一字符串,15~20字符.文件共1MB file2 : 50W条记录,每条记录为多个字符串,长度800~1000字符.文件共500MB 如何以file1中字符串为关键字,在file2中找出这些记录? 现在能实现这样的功能,但效率太低,执行的时间太长,各位能否给个高效的实现方法?

by yyt030 - Shell - 2009-07-11 00:01:54 阅读(1897) 回复(4)