Cannot open file'*' no such file or directory [on hold]su - username -c “./script.sh” -> no such file or directoryregex matching with “locate”Cannot exec /bin/false: no such file or directoryScreen cannot exec 'Myscript.sh': No such file or directorygawk - Dynamic creation of text file using input file fieldsFind with mkdir and substringEscaping gawk variables for shell commandsRounding a number in awkgawk process multiple files inside directorytar “Cannot stat: No such file of directory” when passing array variables
Is a stroke of luck acceptable after a series of unfavorable events?
How does Loki do this?
Class Action - which options I have?
Trouble understanding the speech of overseas colleagues
Is the destination of a commercial flight important for the pilot?
How does buying out courses with grant money work?
How do I extract a value from a time formatted value in excel?
How do scammers retract money, while you can’t?
Increase performance creating Mandelbrot set in python
Anatomically Correct Strange Women In Ponds Distributing Swords
Was a professor correct to chastise me for writing "Dear Prof. X" rather than "Dear Professor X"?
How do I rename a Linux host without needing to reboot for the rename to take effect?
How can I quit an app using Terminal?
How does it work when somebody invests in my business?
Customer Requests (Sometimes) Drive Me Bonkers!
Arithmetic mean geometric mean inequality unclear
What can we do to stop prior company from asking us questions?
How to be diplomatic in refusing to write code that breaches the privacy of our users
Tiptoe or tiphoof? Adjusting words to better fit fantasy races
A Rare Riley Riddle
How long to clear the 'suck zone' of a turbofan after start is initiated?
Applicability of Single Responsibility Principle
Efficient way to transport a Stargate
Large drywall patch supports
Cannot open file'*' no such file or directory [on hold]
su - username -c “./script.sh” -> no such file or directoryregex matching with “locate”Cannot exec /bin/false: no such file or directoryScreen cannot exec 'Myscript.sh': No such file or directorygawk - Dynamic creation of text file using input file fieldsFind with mkdir and substringEscaping gawk variables for shell commandsRounding a number in awkgawk process multiple files inside directorytar “Cannot stat: No such file of directory” when passing array variables
So I have a couple of .txt files in one folder, I'm trying to run a gawk command on them by using *.txt, but when i locate to the folder & use *.txt, it returns no such file or directory?
code example
"C:cygwin64bingawk.exe" -F: 'FNR==NRa[$1]=$2;next $2 in aprint $1 FS a[$2]' *.txt name.email.txt > phone.name.txt
bash cygwin gawk
New contributor
put on hold as off-topic by glenn jackman, Kiwy, Kusalananda♦, jimmij, mosvy yesterday
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." – Kusalananda, jimmij, mosvy
|
show 2 more comments
So I have a couple of .txt files in one folder, I'm trying to run a gawk command on them by using *.txt, but when i locate to the folder & use *.txt, it returns no such file or directory?
code example
"C:cygwin64bingawk.exe" -F: 'FNR==NRa[$1]=$2;next $2 in aprint $1 FS a[$2]' *.txt name.email.txt > phone.name.txt
bash cygwin gawk
New contributor
put on hold as off-topic by glenn jackman, Kiwy, Kusalananda♦, jimmij, mosvy yesterday
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." – Kusalananda, jimmij, mosvy
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
1
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about thels -l
output, above)
– Jeff Schaller♦
yesterday
1
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
1
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday
|
show 2 more comments
So I have a couple of .txt files in one folder, I'm trying to run a gawk command on them by using *.txt, but when i locate to the folder & use *.txt, it returns no such file or directory?
code example
"C:cygwin64bingawk.exe" -F: 'FNR==NRa[$1]=$2;next $2 in aprint $1 FS a[$2]' *.txt name.email.txt > phone.name.txt
bash cygwin gawk
New contributor
So I have a couple of .txt files in one folder, I'm trying to run a gawk command on them by using *.txt, but when i locate to the folder & use *.txt, it returns no such file or directory?
code example
"C:cygwin64bingawk.exe" -F: 'FNR==NRa[$1]=$2;next $2 in aprint $1 FS a[$2]' *.txt name.email.txt > phone.name.txt
bash cygwin gawk
bash cygwin gawk
New contributor
New contributor
edited yesterday
mosvy
8,4521732
8,4521732
New contributor
asked yesterday
user343683user343683
11
11
New contributor
New contributor
put on hold as off-topic by glenn jackman, Kiwy, Kusalananda♦, jimmij, mosvy yesterday
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." – Kusalananda, jimmij, mosvy
put on hold as off-topic by glenn jackman, Kiwy, Kusalananda♦, jimmij, mosvy yesterday
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." – Kusalananda, jimmij, mosvy
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
1
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about thels -l
output, above)
– Jeff Schaller♦
yesterday
1
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
1
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday
|
show 2 more comments
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
1
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about thels -l
output, above)
– Jeff Schaller♦
yesterday
1
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
1
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
1
1
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about the
ls -l
output, above)– Jeff Schaller♦
yesterday
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about the
ls -l
output, above)– Jeff Schaller♦
yesterday
1
1
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
1
1
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday
|
show 2 more comments
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
* is referencing to a different file, than name.email.txt, it's calling for 2 file inputs, *.txt & name.email.txt..
– user343683
yesterday
do you run the command from gycwin terminal or windows terminal ?
– Kiwy
yesterday
1
perhaps you don't have any *.txt files in that directory? (answerable via Kiwy's question about the
ls -l
output, above)– Jeff Schaller♦
yesterday
1
@Kiwy thanks to your question on whether I was ucing cygwin terminal or windows terminal, I managed to solve my issue, I was using .bat hence why I was referencing " ...gawk.exe " and not " gawk " anyway I realised by default .bat is cmd based and so I used cygwin term instead.
– user343683
yesterday
1
please do not vandalize your own question; notice that modifying a question does not automatically notify the people who tried to help you in comments.
– mosvy
yesterday