我想'\''
使用命令在文本文件中替换为另一个单词或字符sed
。
尝试使用sed "s/'\''/×/g"
但它不起作用。
有人知道解决方案吗?
文本:
exampleexampleexampleexample
期望的输出:
exam$plee$xamp$leex$ampl$eexa$mpl$
我这样做了:
sed 's/[^*]/&$/4'
但它不起作用,有没有其他方法可以做到这一点?
我正在尝试在我的脚本中使用一个命令来打印脚本本身的文字文本内容。
我尝试使用cat $(pwd)/$(basename "$0")
,但不起作用。有人知道怎么做吗?
我想制作具有开关功能的shell脚本
就像这样
第一次:
echo -e "Activated!"
第二次:
echo -e "Deactivated!"
有没有办法做到这一点?
如何缩短这个 shell 脚本?
CODE="A"
if test "$CODE" = "A"
then
PN="com.tencent.ig"
elif test "$CODE" = "a"
then
PN="com.tencent.ig"
elif test "$CODE" = "B"
then
PN="com.vng.pubgmobile"
elif test "$CODE" = "b"
then
PN="com.vng.pubgmobile"
elif test "$CODE" = "C"
then
PN="com.pubg.krmobile"
elif test "$CODE" = "c"
then
PN="com.pubg.krmobile"
elif test "$CODE" = "D"
then
PN="com.rekoo.pubgm"
elif test "$CODE" = "d"
then
PN="com.rekoo.pubgm"
else
echo -e "\a\t ERROR!"
echo -e "\a\t CODE KOSONG"
echo -e "\a\t MELAKUKAN EXIT OTOMATIS"
exit
fi
里面FILE.txt
Interval: 5s
Interval: 3m
Interval: 1h
Interval: 7s
Interval: 5m
Interval: 3h
我想做的事:
这个怎么做?