About 580,000 results
Open links in new tab
  1. 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 …

  2. What is the difference between building from source and using an ...

    Aug 28, 2014 · I.e., unpack the source package from your distribution, replace the source with the upstream version, check if any of the distribution's patches or configuration tweaks still apply, …

  3. How to fix "Bad magic number in super-block" - fstab

    Dec 11, 2022 · But if the source disk was originally mkfs 'd as a single filesystem without partitions (= known as "superfloppy configuration"), then e2fsck /dev/nvme0n1 might be appropriate - …

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

  5. rsync compare directories? - Unix & Linux Stack Exchange

    Is it possible to compare two directories with rsync and only print the differences? There's a dry-run option, but when I increase verbosity to a certain level, every file compared is shown. ls -a...

  6. What is the difference between "eval" and "source /dev/stdin"?

    Your example provides the same result, but the purpose of eval and source is different. source is usually used for providing a library for other scripts, while eval is used only to evaluate …

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

  8. Rsync backup is almost twice as big as source - Unix & Linux Stack …

    Sep 28, 2024 · Although the contents (size) in bytes of both source and destination are the same, the amount of space it takes up is less on the local HDD compared to the amount it takes up …

  9. linux - `source` command: .csh and .sh file not found even though …

    The shell is complaining about the source command, not about your files. Your shell seems to be /bin/sh, which may be the dash shell. When dash is running as sh, it's a POSIX shell and …

  10. Why can `BASH_SOURCE` be used to obtain the current directory …

    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, …