Tagged Questions
The shell-scripting tag has no wiki summary.
3
votes
2answers
57 views
Shell Script “|| { }” Readable Alternative
I was looking for a way to check if a program is installed using Shell Script when I came across this answer which contained this code:
hash foo 2>&- || { echo >&2 "I require foo but ...
2
votes
4answers
73 views
Reading a file from line 4 to the end
I want to read a file from the line 4 to the very end is there anyway to this with awk or something?
1
vote
2answers
77 views
Bash script variables and parameter passing
I'm trying to pass a string variable to an application in a bash script:
# launch app for translator to verify
DIR="$( cd "$( dirname "$0" )" && pwd )"
langstr="'(English)'"
...
0
votes
4answers
45 views
Get An Specified Match Under a String
I'm trying to match the contents of a string that contains sequences of quotes using Shell Script, at the time the far I got was this:
et="\"He\" \"llo\""
echo $et | sed -e '/\"(.*?)\"/g'
Which ...
0
votes
4answers
99 views
Remember sudo password in shellscript
I want to make a shellscript to install Wine on a Mac
and i want the user to enter his/her password so the script can use it later on to make the installation unattended by automatically entering the ...
0
votes
1answer
39 views
sed - remove specific subscript from string
please provide me a sed oneliner which provides this output:
sdc3 sdc2
for Input :
sdc3[1] sdc2[0]
I mean remove all subscript value from the string ..
0
votes
2answers
38 views
variable still empty after the loop problem in shell scripting
I'm very new in shell scripting, and I encountered a problem that is quite wired. The program is rather simple so I just post it here:
#!/bin/bash
list=""
list=`mtx -f /dev/sg2 status | while read ...
-1
votes
1answer
156 views
Automate in Shell Script Terminal
Oh my god! I have tried everything about expect. What I want to do is create a script to automate input password when changing to root in terminal. My code look like this
expect -i
spawn sudo pmset ...