Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/312573/wh…
What is the difference between "." "./" and "source"? [duplicate]
When the script is done, any changes that it made to the environment are discarded. . script The above sources the script. It is as if the commands had been typed in directly. Any environment changes are kept. source script This also sources the script. The source command is not required by POSIX and therefore is less portable than the shorter ..
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/309768/so…
Source vs . why different behaviour? - Unix & Linux Stack Exchange
source is a shell keyword that is supposed to be used like this: source file where file contains valid shell commands. These shell commands will be executed in the current shell as if typed from the command line.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/116584/ba…
bash script error: source: not found - Unix & Linux Stack Exchange
You have an alias which is overriding the builtin source (fix with unalias source) You have a function which is overriding source (fix with unset -f source) You are somehow not using bash (although your bang line would suggest you are). source is not POSIX. Using source on dash does not work, only . works.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/45684/wha…
What is the difference between ~/.profile and ~/.bash_profile?
The original sh sourced .profile on startup. bash will try to source .bash_profile first, but if that doesn't exist, it will source .profile. Note that if bash is started as sh (e.g. /bin/sh is a link to /bin/bash) or is started with the --posix flag, it tries to emulate sh, and only reads .profile. Footnotes: Actually, the first one of .bash_profile, .bash_login, .profile See also: Bash ...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/58514/wha…
What is the difference between '.' and 'source' in shells?
2 source is there for readability and self-documentation, . exists because it is quick to type. The commands are identical. Perl has long and short versions of many of its control variables for the same reason.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/28803/how…
How can I reduce a video's size with ffmpeg?
How can I use ffmpeg to reduce the size of a video by lowering the quality (as minimally as possible, naturally, because I need it to run on a mobile device that doesn't have much available space)?...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/222283/re…
bash - read only TMOUT variable - Unix & Linux Stack Exchange
for clarification. will the output be in the background so that it doesn't interfere with the foreground process? I sometime runs a batch process that ssh's to around thousand or so systems that take 36-48 hours to complete the commands on all of them. TMOUT setting might cause that to exit prematurely. Usually TMUX works for this use case, but I don't think it's good enough any more.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/403028/re…
bash - Revert '.' or 'source' - Unix & Linux Stack Exchange
I accidentally sourced the wrong environment from a script. Is there any way to 'unsource' it or in other words to revert it and restore the previous environment? The obvious answer is to start fr...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/601074/wh…
Why can `BASH_SOURCE` be used to obtain the current directory of the ...
I've read that BASH_SOURCE should be populated with the name of the executing script (and it works!). But why does BASH_SOURCE hold the name of the executing script, when it is defined in man bash as an array of source filenames corresponding to shell functions?
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/79064/how…
How to export variables from a file? - Unix & Linux Stack Exchange
A dangerous one-liner that doesn't require source: export $(xargs <file) It can't handle comments, frequently used in environment files It can't handle values with whitespace, like in the question example It may unintentionally expand glob patterns into files if they match by any chance It's a bit dangerous because it passes the lines through bash expansion, but it has been useful to me when I ...