Tartalom
Adatok
Licenc: GNU GPLv3+
Verziószám: GNU Bash 5
Fejlesztő/tulajdonos: Free Software Foundation Inc.
Rövid leírás:
Az export beépített Bash parancs manual oldala és súgója. Minden NÉV automatikus környezeti változóvá exportálásra jelölése. Így minden ezután kiadott parancs környezetében megjelenik. Ha az ÉRTÉK is meg van adva, értékadás is történik.
Man oldal kimenet
man bash
[...] export [-fn] [name[=word]] ... export -p The supplied names are marked for automatic export to the environment of subse- quently executed commands. If the -f option is given, the names refer to func- tions. If no names are given, or if the -p option is supplied, a list of names of all exported variables is printed. The -n option causes the export property to be removed from each name. If a variable name is followed by =word, the value of the variable is set to word. export returns an exit status of 0 unless an invalid op- tion is encountered, one of the names is not a valid shell variable name, or -f is supplied with a name that is not a function. [...]
Súgó kimenet
export --help
export: export [-fn] [név[=érték] ...] vagy export -p Parancsértelmező-változók exportálás attribútumának beállítása. Minden NÉV automatikus környezeti változóvá exportálásra jelölése. Így minden ezután kiadott parancs környezetében megjelenik. Ha az ÉRTÉK is meg van adva, értékadás is történik. Kapcsolók: -f parancsértelmező-függvényekre vonatkozzon -n export attribútum eltávolítása minden NÉVRŐL -p összes exportált változó és függvény listázása Egy „--” argumentum letiltja a további kapcsolóértelmezést. Kilépési kód: Sikerrel tér vissza, kivéve ha érvénytelen kapcsolót vagy NEVET kap.
Kapcsolódó tartalom
- 45 megtekintés