About 50 results
Open links in new tab
  1. What is the difference between "." "./" and "source"? [duplicate]

    Sep 27, 2016 · 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 …

  2. Why can `BASH_SOURCE` be used to obtain the current directory of the ...

    Jul 30, 2020 · 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 …

  3. 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 …

  4. podman pull issue RHEL9 : Error: initializing source docker:

    Aug 29, 2024 · podman pull issue RHEL9 : Error: initializing source docker: Ask Question Asked 1 year, 5 months ago Modified 1 year, 5 months ago

  5. zsh - Error while trying to source a .zshrc file - Unix & Linux Stack ...

    Apr 29, 2022 · You're missing / Your command source ~.zshrc tries to lookup the home directory for a user called .zshrc. The source command would presumably attempt to execute that user's home …

  6. Why was the dot (.) used as an alias for source & why don't other ...

    Jul 29, 2018 · The source command was introduced by the csh in 1977 or 1978. So there is not an alias relation but two different names for an "invention" at the same time. BTW: I can tell you why cd is …

  7. make - How to build OpenSSL from source, without depending on /lib ...

    Sep 26, 2024 · How to build OpenSSL from source, without depending on /lib/libcrypto.so Ask Question Asked 1 year, 4 months ago Modified 1 year, 4 months ago

  8. Getting kernel source code (ubuntu) - Unix & Linux Stack Exchange

    Apr 10, 2017 · I want to try my hand at writing a linux driver. I am trying to set up my environment. My current kernel: $ uname -r 4.10.0-37-generic I then download the source code: $ apt-get source linux …

  9. Load variables with source with a single line scope

    Jan 27, 2023 · Use a sub-shell: ( source env.source && ./script.bash ) The environment inside the sub-shell is destroyed when the sub-shell terminates. Or, in bash, set BASH_ENV for the script: …

  10. convert executable back to C source code

    Sep 16, 2015 · Unfortunately I lost my source code and I just have the output file that made with gcc in linux and I don’t have any access to my pc now.is there any way to convert output file to source file …