Difference between revisions of "Export (Bash buildin)"

From wikieduonline
Jump to navigation Jump to search
 
(4 intermediate revisions by 3 users not shown)
Line 18: Line 18:
  
 
* <code>[[export]] [[AWS_PROFILE]]=your-profile</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 ==
 
== GitLab CI ==
Line 34: Line 41:
 
* <code>[[shopt]]</code>
 
* <code>[[shopt]]</code>
 
* <code>[[dir env:]]</code>
 
* <code>[[dir env:]]</code>
* [[Powershell]]: <code>$env:AWS_PROFILE="yourprofile"</code>
+
* [[Powershell]]: <code>[[$env]]:AWS_PROFILE="yourprofile"</code>
 +
* <code>export DATE=$(date -I); echo $DATE</code>
  
 
== See also ==
 
== See also ==

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: