Questions tagged [syntax]

189 questions
2
votes
1 answer

How many different variations of this command?

That's an unusual question. Let's say I have one command with this synopsis: /usr/bin/wc [-c | -m | -C] and second command with head [-number | -n number] [filename] The question is how many different usage variations(combinations) of these…
1
vote
3 answers

Run a command in the background but also concatenate other commands to it?

How could I concatenate several commands in a single line, but also run them all in the background ? These didn't work: sleep 1m & && echo "goodbye" & && exit &. sleep 1m & ; echo "goodbye" & ; exit &. sleep 1m & echo "goodbye" & exit &. I must…
user149572