Skip to main content
The 2024 Developer Survey results are live! See the results
More affirmative answer (this is not a forum - see e.g. <http://meta.stackexchange.com/a/92115>. It is a think tank (see <http://meta.stackoverflow.com/a/325681>).
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 109
  • 132

How about usingUse a shell script?:

#!/bin/bash
# myscript
FOO=bar
somecommand someargs | somecommand2

> ./myscript

How about using a shell script?

#!/bin/bash
# myscript
FOO=bar
somecommand someargs | somecommand2

> ./myscript

Use a shell script:

#!/bin/bash
# myscript
FOO=bar
somecommand someargs | somecommand2

> ./myscript
Source Link
Spencer Rathbun
  • 14.8k
  • 6
  • 55
  • 73

How about using a shell script?

#!/bin/bash
# myscript
FOO=bar
somecommand someargs | somecommand2

> ./myscript