Multiple commands #410
Answered
by
davmac314
omnigenous
asked this question in
Q&A
-
logs: hello & sleep 3 && echo world
logs: hello: -c: line 1: unexpected EOF while looking for matching `'' Is there a proper way to do this without creating separate script file? I basically need to run another command once daemon is started (first command) |
Beta Was this translation helpful? Give feedback.
Answered by
davmac314
Nov 10, 2024
Replies: 1 comment 1 reply
-
Use double quotes (") not single quotes ('). Single quotes are meaningless to dinit; see the documentation.
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
omnigenous
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use double quotes (") not single quotes ('). Single quotes are meaningless to dinit; see the documentation.