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