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

    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. 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. How to compile and install programs from source

    That being said... +1 bump for asking a common question that should be answered for all newcomers to *nix systems. :) Building from source sometimes means the difference between fixing a nasty bug …

  4. Is there a source code available for patch command in Linux?

    Nov 25, 2019 · I am looking for a source code for the patch command used in Linux. Does anyone know if there is one available? I am looking for a something which is compatible to POSIX or more …

  5. 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: …

  6. kernel martian source to and from same IP - Unix & Linux Stack Exchange

    We are intermittently seeing kernel: martian source log entries for eth0 on a couple of our servers. The interesting thing is that they are to and from the same IP. For instance: Nov 4 02:20:27

  7. Getting rsync to delete source files that already exist on destination

    Jun 12, 2017 · As per the man page, rsync only delete the source files after all file transfers have completed on a specific run. This works fine most of the time, except if the transfer is interrupted …

  8. repository - What is the correct way to enable source downloads in ...

    Dec 16, 2020 · From a CentOS machine you can easily retrieve sources using the yumdownloader --source <packagename> command. Their definition of easily is clearly different to mine.

  9. drivers - How to install kernel source from upstream kernel - Unix ...

    Apr 14, 2015 · What do you mean by "upstream source" ? The source from the RPM packager, or the one from Kernel.org ?

  10. From which URL does "sudo apt-get source" fetch the source tarball?

    Feb 26, 2022 · How to tap into the exact url from where the source tarballs for ubuntu packages are downloaded, when we execute the below command? sudo apt-get source {package-name} I know …