10 lines
113 B
Bash
10 lines
113 B
Bash
#!/bin/bash
|
|
|
|
if (which stern &> /dev/null)
|
|
then
|
|
|
|
# activate completion
|
|
source <(stern --completion bash)
|
|
|
|
fi
|