python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use variable in sh curl groovy using quotest?
i have a script
Date date = new Date()
String datePart = date.format("yyyy-MM-dd HH:mm:ss")
sh "curl 'www.link.com' --json '{"datas": "${datePart}"}'"
result ...
German Varanytsya
Votes: 0
Answers: 1
bash: how to return string with newline from function?
I need to save the following in a file using function.
[hello]
world
I try a couple of ways but none works.
#!/bin/bash
create_string() {
str="[${1}]\n"
str="${str}world\n"
...
user3108468
Votes: 0
Answers: 2
how can i hide complete app (with sub-names) in magisk with sh command with sh
magiskhide add <PKGNAME>
magiskhide add <PKGNAME> <subname>
above command only hiding this
yes I can add pkg name and then these sub-names in command to hide rest options but do you...
Abdullah
Votes: 0
Answers: 0