2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/source
2019-11-13 16:08:03 +00:00

6 lines
239 B
Plaintext

# The contents of FILE (assuming shell script) will be sourced into the current
# session, allowing external use of things like its functions and variables.
source FILE
# The above can be written in short-hand, for the same effect:
. FILE