Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 183 Bytes

bash.md

File metadata and controls

18 lines (14 loc) · 183 Bytes
layout title
base
Bash scripting
# Mark as bash script:
#!/bin/bash

# Stop on errors:
set -e

# Current dir name:
${PWD##*/}

# Set env var:
ABC="123"; export ABC