About 601,000 results
Open links in new tab
  1. `source .../settings.csh` not working from `sh ./test.sh`

    The sh test.sh sets up a new environment in which the source command will be used to source setiin64.csh (I still find it hard to believe this will actually work, it's a csh script).

  2. How can I "source" expect script - Unix & Linux Stack Exchange

    Jan 24, 2019 · The fundamental problem is that a child process cannot alter the environment of its parent. This is why you need to source that shell script, so the environment variables will …

  3. If "bash <file>" works, why is "source <file>" throwing an error?

    Jun 21, 2016 · However, when you source something, it is run in your current shell which, because it is interactive, has already loaded the aliases and therefore the fi alias is recognized …

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

  5. source .bashrc command doesn't work - Unix & Linux Stack …

    Dec 1, 2011 · source .bashrc command doesn't work Ask Question Asked 13 years, 10 months ago Modified 13 years, 10 months ago

  6. How can I source environment changes system-wide?

    Dec 14, 2021 · Similarly, source ing /etc/profile after a change will make those changes effective in your current session. But suppose you need to change an environment variable that is …

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

    The source command is an extension to the standard, usually the same or similar as the standard . (dot) command. Therefore, if you want to source those files in your /bin/sh shell, then use the …

  8. Is there a way to print the commands that the shell builtin `source` …

    Sep 26, 2021 · See also: emulate sh -xc 'source ./my_source.sh' or emulate sh -o xtrace -c 'source ./my_source.sh' in zsh to source the file in sh emulation (the .sh extension suggests …

  9. How to source .bashrc file directly after I close and save?

    Jul 1, 2017 · In defense of &&: I actually want to source the file ONLY if vim exited correctly. Imagine if it crashes for any reason, better not to source a file in a mid-edit state! Also, I don't …

  10. How can I monitor disk io? - Unix & Linux Stack Exchange

    I'd like to do some general disk io monitoring on a debian linux server. What are the tools I should know about that monitor disk io so I can see if a disk's performance is maxed out or spikes at c...