2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/source
terminalforlife 2ce193c0ba Fix typos, tidy formatting, & improve writing
This is what late-night boredom does to you. lol
2020-02-22 03:38:15 +00:00

7 lines
311 B
Plaintext

# This is a shell built-in available in Bash, but not in the Bourne Shell
# (`sh`). The contents of FILE (assuming shell script) will be sourced into the
# current session, allowing external use of its functions, variables, etc.
source FILE
# The above can be written in short-hand, for the same effect:
. FILE