Difference between revisions of "Export (Bash buildin)"

From wikieduonline
Jump to navigation Jump to search
 
(10 intermediate revisions by 3 users not shown)
Line 16: Line 16:
  
 
* <code>export [[PATH]]=$PATH:$(dirname $([[go list]] -f '{{.Target}}' .))</code>
 
* <code>export [[PATH]]=$PATH:$(dirname $([[go list]] -f '{{.Target}}' .))</code>
 +
 +
* <code>[[export]] [[AWS_PROFILE]]=your-profile</code>
 +
 +
 +
export PATH=$HOME/brew/bin:$PATH >> ~/.zshrc # or ~/.bashrc
 +
[[export: not valid in this context]]: /Users/Guest/.bashrc
 +
 +
Solution: check you are not using a shell different from [[Bash]]
 +
 +
 +
== GitLab CI ==
 +
[[job_name:]]
 +
  [[GitLab pipelines: script:|script:]]
 +
    - export
  
 
== Related terms ==
 
== Related terms ==
Line 26: Line 40:
 
* [[GitLab environment variables]]
 
* [[GitLab environment variables]]
 
* <code>[[shopt]]</code>
 
* <code>[[shopt]]</code>
 +
* <code>[[dir env:]]</code>
 +
* [[Powershell]]: <code>[[$env]]:AWS_PROFILE="yourprofile"</code>
 +
* <code>export DATE=$(date -I); echo $DATE</code>
  
 
== See also ==
 
== See also ==
 
* {{export}}
 
* {{export}}
 
* {{env}}
 
* {{env}}
* {{buildin}}
+
* {{builtin}}
  
  
 
[[Category:Computing]]
 
[[Category:Computing]]

Latest revision as of 11:23, 12 February 2024

https://man7.org/linux/man-pages/man1/export.1p.html


  • ssh SERVER_NAME -t "export PS1=your_text; bash"



export PATH=$HOME/brew/bin:$PATH >> ~/.zshrc # or ~/.bashrc
export: not valid in this context: /Users/Guest/.bashrc

Solution: check you are not using a shell different from Bash


GitLab CI[edit]

job_name:
 script:
   - export

Related terms[edit]

See also[edit]

  • https://www.cyberciti.biz/faq/unix-linux-bash-history-display-date-time/
  • Advertising: