How to silence grep errors when used with a variable?











up vote
0
down vote

favorite












Note: I have a work around for this but feel that I shouldn't need it.



The following errors silently when typed into terminal



grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s


In a script file, the following will throw No such file or directory



pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
grep: ./tasks.txt: No such file or directory


Why is the -s not working and how can the error be silenced?





Only just started when I ran into this error, here is my code so far.



#!/bin/bash  
BINDIR=$(dirname "$(readlink -fn "$0")") # The curent directory path ie: /server/users/
SCR=$(basename -- "$0") # The name of this script ie: name.sh
SCRBASE=$(basename -- "$0" .sh) # The name of this script without extension ie: name
CWD=${BINDIR##*/} # The current directory name without the path ie: users
cd "$BINDIR"

pth="" # The path to the server root
name="" # The level name of the server

pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
echo "path=$pth" > log.txt









share|improve this question









New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Are you sure the error message comes from that line?
    – nohillside
    1 hour ago










  • Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
    – nohillside
    1 hour ago










  • @nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
    – Stuperfied
    50 mins ago












  • I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
    – nohillside
    42 mins ago










  • @nohillside Added the full error to the post.
    – Stuperfied
    37 mins ago















up vote
0
down vote

favorite












Note: I have a work around for this but feel that I shouldn't need it.



The following errors silently when typed into terminal



grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s


In a script file, the following will throw No such file or directory



pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
grep: ./tasks.txt: No such file or directory


Why is the -s not working and how can the error be silenced?





Only just started when I ran into this error, here is my code so far.



#!/bin/bash  
BINDIR=$(dirname "$(readlink -fn "$0")") # The curent directory path ie: /server/users/
SCR=$(basename -- "$0") # The name of this script ie: name.sh
SCRBASE=$(basename -- "$0" .sh) # The name of this script without extension ie: name
CWD=${BINDIR##*/} # The current directory name without the path ie: users
cd "$BINDIR"

pth="" # The path to the server root
name="" # The level name of the server

pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
echo "path=$pth" > log.txt









share|improve this question









New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Are you sure the error message comes from that line?
    – nohillside
    1 hour ago










  • Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
    – nohillside
    1 hour ago










  • @nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
    – Stuperfied
    50 mins ago












  • I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
    – nohillside
    42 mins ago










  • @nohillside Added the full error to the post.
    – Stuperfied
    37 mins ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Note: I have a work around for this but feel that I shouldn't need it.



The following errors silently when typed into terminal



grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s


In a script file, the following will throw No such file or directory



pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
grep: ./tasks.txt: No such file or directory


Why is the -s not working and how can the error be silenced?





Only just started when I ran into this error, here is my code so far.



#!/bin/bash  
BINDIR=$(dirname "$(readlink -fn "$0")") # The curent directory path ie: /server/users/
SCR=$(basename -- "$0") # The name of this script ie: name.sh
SCRBASE=$(basename -- "$0" .sh) # The name of this script without extension ie: name
CWD=${BINDIR##*/} # The current directory name without the path ie: users
cd "$BINDIR"

pth="" # The path to the server root
name="" # The level name of the server

pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
echo "path=$pth" > log.txt









share|improve this question









New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











Note: I have a work around for this but feel that I shouldn't need it.



The following errors silently when typed into terminal



grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s


In a script file, the following will throw No such file or directory



pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
grep: ./tasks.txt: No such file or directory


Why is the -s not working and how can the error be silenced?





Only just started when I ran into this error, here is my code so far.



#!/bin/bash  
BINDIR=$(dirname "$(readlink -fn "$0")") # The curent directory path ie: /server/users/
SCR=$(basename -- "$0") # The name of this script ie: name.sh
SCRBASE=$(basename -- "$0" .sh) # The name of this script without extension ie: name
CWD=${BINDIR##*/} # The current directory name without the path ie: users
cd "$BINDIR"

pth="" # The path to the server root
name="" # The level name of the server

pth=$(grep -oP "path:K(.+)/([^/]+)" ./tasks.txt -s)
echo "path=$pth" > log.txt






shell-script error-handling






share|improve this question









New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 38 mins ago





















New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 1 hour ago









Stuperfied

12




12




New contributor




Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Stuperfied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Are you sure the error message comes from that line?
    – nohillside
    1 hour ago










  • Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
    – nohillside
    1 hour ago










  • @nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
    – Stuperfied
    50 mins ago












  • I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
    – nohillside
    42 mins ago










  • @nohillside Added the full error to the post.
    – Stuperfied
    37 mins ago


















  • Are you sure the error message comes from that line?
    – nohillside
    1 hour ago










  • Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
    – nohillside
    1 hour ago










  • @nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
    – Stuperfied
    50 mins ago












  • I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
    – nohillside
    42 mins ago










  • @nohillside Added the full error to the post.
    – Stuperfied
    37 mins ago
















Are you sure the error message comes from that line?
– nohillside
1 hour ago




Are you sure the error message comes from that line?
– nohillside
1 hour ago












Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
– nohillside
1 hour ago




Does it work if you change the script to cd to a handcoded directory name and assigning pth (so that the script only contains the shebang and two lines of code)?
– nohillside
1 hour ago












@nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
– Stuperfied
50 mins ago






@nohillside Nope. Also, the file does not actually exist. afaik the -s should be working but is not.
– Stuperfied
50 mins ago














I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
– nohillside
42 mins ago




I suspected one of the other lines to throw the error, actually :-) Can you add the full error message (the whole line) to make this clear?
– nohillside
42 mins ago












@nohillside Added the full error to the post.
– Stuperfied
37 mins ago




@nohillside Added the full error to the post.
– Stuperfied
37 mins ago















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Stuperfied is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f482088%2fhow-to-silence-grep-errors-when-used-with-a-variable%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








Stuperfied is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















Stuperfied is a new contributor. Be nice, and check out our Code of Conduct.













Stuperfied is a new contributor. Be nice, and check out our Code of Conduct.












Stuperfied is a new contributor. Be nice, and check out our Code of Conduct.















 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f482088%2fhow-to-silence-grep-errors-when-used-with-a-variable%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Entries order in /etc/network/interfaces

新発田市

Grub takes very long (several minutes) to open Menu (in Multi-Boot-System)