export: add -f flag (#2550)

italian
Kevin Kredit 2018-11-05 17:35:14 -05:00 committed by Starbeamrainbowlabs
parent c0e9b908e4
commit 24b670aba2
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@
`export -n {{VARIABLE}}`
- Mark a shell function for export:
`export -f {{FUNCTION_NAME}}`
- Append something to the PATH variable:
`export PATH=$PATH:{{path/to/append}}`