6 lines
113 B
Bash
Executable File
6 lines
113 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
refresh="60"
|
|
|
|
while true; do clear; ./stocks.sh $(cat ~/.ticker.conf); sleep $refresh; done
|