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

    Sep 27, 2016 · The above executes the script. 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 …

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

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

  4. OpenBSD: Where to seek for the source of programs in the base system?

    Jan 20, 2020 · The source code for the OpenBSD base system and the utilities that it contains is available through CVS. How you fetch the source code is described in the OpenBSD FAQ, under the …

  5. Where can I get the current source code for SUSE SLES products?

    May 3, 2022 · I wasn't officially asking (SUSE support) for the source code; instead it was a kind of personal initiative as the official support failed to bring forward any solution. And as said in the …

  6. Conflicting values set for option Signed-By regarding source

    Jan 16, 2023 · Conflicting values set for option Signed-By regarding source Ask Question Asked 3 years, 3 months ago Modified 14 days ago

  7. bash source file with some modification - Unix & Linux Stack Exchange

    Apr 28, 2020 · The bigger problem I see is that bash's value for "param1" (for example) would be overwritten with the last value in the file; you haven't distinguished "section 1" from "section 2" & etc.

  8. Where to download Linux Kernel source code of a specific version ...

    Is there a resource to download a specific kernel version source? For example, I want to get 2.6.36.2 sources to compare with this package and see what changes were introduced?

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

  10. Why does the command 'source' have that name? - Unix & Linux Stack …

    Jul 12, 2019 · In that context, I’ve always thought of source as specifying the source of the commands the shell should execute (reverting to the current source once it’s finished). Bill Joy (who introduced …