About 584,000 results
Open links in new tab
  1. Source vs . why different behaviour? - Unix & Linux Stack Exchange

    source is a shell keyword that is supposed to be used like this: sourcefile where file contains valid shell commands. These shell commands will be executed in the current shell as if typed from …

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

  3. What does :source % mean? - Unix & Linux Stack Exchange

    Sep 1, 2018 · The :source % command, when used on the ~/.vimrc configuration, will reload the config. You can achieve the same effect by quitting and restarting Vim, but this is faster. Note …

  4. How can I make a script in /etc/init.d start at boot?

    Apr 20, 2017 · # Source function library. . /etc/init.d/functions start() { # code to start app comes here # example: daemon program_name & } stop() { # code to stop app comes here # …

  5. What is the difference between ~/.profile and ~/.bash_profile?

    Feb 27, 2019 · bash will try to source .bash_profile first, but if that doesn't exist, it will source .profile 1. Note that if bash is started as sh (e.g. /bin/sh is a link to /bin/bash) or is started with …

  6. Can't use `source` from cron? - Unix & Linux Stack Exchange

    Oct 14, 2017 · Unless you have written a script called source and put it in /, you want source and not /source. The next issue is that cron usually uses whatever you have as /bin/sh and source …

  7. How to export variables from a file? - Unix & Linux Stack Exchange

    . is the standard and Bourne name for the source command so I prefer it for portability (source comes from csh and is now available in most modern Bourne-like shells including bash though …

  8. source - Passing variables to a bash script when sourcing it - Unix ...

    Apr 7, 2018 · You may be interested in the fact that the ability to source a script with arguments is a bashism. In sh or dash your main.sh will not echo anything because the arguments to the …

  9. How can I reduce a video's size with ffmpeg?

    All the answers here are for reducing the compression quality, but nobody has mentioned reducing the video frame size. It's a lot quicker, up to multiple times faster depending on your …

  10. How to make netcat use an existing HTTP proxy

    Netcat is not a specialized HTTP client. Connecting through a proxy server for Netcat thus means creating a TCP connection through the server, which is why it expects a SOCKS or HTTPS …

Refresh