script
Contents
範例 script.sh
$ touch script.sh
$ chmod +x script.sh
檔案內容
#!/bin/zsh
GREENLIGHT_DB_DSN='postgres://greenlight:@localhost/greenlight?sslmode=disable'
echo ${GREENLIGHT_DB_DSN}
運行 script.sh
$ ./script.sh
範例 script.sh
$ touch script.sh
$ chmod +x script.sh
檔案內容
#!/bin/zsh
GREENLIGHT_DB_DSN='postgres://greenlight:@localhost/greenlight?sslmode=disable'
echo ${GREENLIGHT_DB_DSN}
運行 script.sh
$ ./script.sh