databricks-cli/libs/process/testdata/parent.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
169 B
Bash
Raw Normal View History

2025-02-17 22:02:17 +00:00
#!/bin/bash
# Launch background process.
(sleep 5; echo "abc" > $2) &
# Save PID of the background process to the file specified by the first argument.
echo -n $! > $1