Questions tagged «sh»

sh代表外壳。它还经常用作shell脚本的扩展。

1
如何为wget编码网址?
我正在寻找一种方法将字符串转换为 清洁 网址。 例如 : wget http://myurl.com/toto/foo bar.jpg 这将是下载 http://myurl.com/toto/foo 和 http://bar.jpg。 我想下载 http://myurl.com/toto%20bar.jpg。 我尝试了一些旗帜 --restrict-file-names=ascii 但没有成功。 我不想要一种编码方式,而不是一种逐一替换。 任何的想法 ?
3 bash  wget  url  sh 


1
如何从shell脚本中读取文件中的数据
我有两个shell脚本文件test1.sh和test2.sh。我有另一个名为translogs.txt的文件。 现在我需要将test1.sh中两个变量的值复制到translog.txt,并且需要将相同的变量复制到test2.sh中的相应值。 test1.sh #!/bin/sh ONE="000012" TIME="2013-02-19 15:31:06" echo -e "$ONE\n$TIME">translog.txt; translog.txt ONE="000012" TIME="2013-02-19 15:31:06" 但是在test2.sh中,我想要与translog.txt中相同的值到相应的变量,如ONE和TIME应该具有与translog.txt中相同的值 test2.sh #!/bin/sh ONE="000012" TIME="2013-02-19 15:31:06"

1
如何在管道中间使用“此处文档”?
我想使用heredoc作为模板生成一些内容: passphrase=$(<passphrase) envsubst <<EOF apiVersion: v1 kind: Secret metadata: name: openshift-passphrase stringData: passphrase: ${passphrase} EOF 把它管道oc create -f -。 如果我在之后添加一个管道EOF,它就不起作用。 如何将具有可变替换的heredoc传输到消耗它的东西?
1 linux  command-line  bash  pipe  sh 

1
新终端窗口退出后如何运行脚本菜单
我有一个脚本,要求用户输入选项。 当选择我有它的选项时,它运行一个新的终端并执行指定选项的另一个脚本。 我仍然希望第一个终端上的菜单脚本要求用户输入而不是退出脚本。对此的一些反馈将不胜感激。 以下内容是从OP的评论中复制的: 这是一个例子: menue.sh #!/binbash clear echo echo echo echo "1. Option Here" echo echo -n "Choice" read choice echo $choice case $choice in 1) /root/scriptexample/./examplenewterminal.sh ;; esac ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ examplenewterminal.sh #!/bin/bash xterm -e "/root/scriptexample/./example.sh" bash clear echo example.sh #!bin/bash clear echo echo echo echo 命令在这里等 当您使用Control + C …


2
在OSX上自动运行脚本
如何自动运行我在mac上制作的脚本。 它需要每天运行一次。因为它需要rsync,mac需要连接到互联网,我已经意识到它在睡觉时wifi没有连接。 我怎么能绕过这个?

1
我偶然更改了符号链接/ bin / sh
我正在使用Ubuntu 11.1。符号链接/ bin / sh指向我系统中的破折号。/ bin / bash指向sh。我不小心将/ bin / sh更改为指向/ bin / bash。现在,我无法打开终端。我如何从这个混乱中恢复?
ubuntu  bash  sh 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.