I saw a code like this that could be run on the bash prompt: bc fibonacci.bc <<< "fibonacci(1)"
A function fibonacci(n)is defined in the file fibonacci.bc. The syntax of the function follows bc syntax rules.
The redirection symbol <<< looks new to me. Can somebody throw some light on it?
Triple input redirection symbol in bash script
43 views Asked by Kamalakshi At
1
There are 1 answers
Related Questions in BASH
- When does Bash read heredocs?
- Why `set -o pipefail` gives different output even though the pipe is not failing
- Run an external command within jq to manipulate each values of a particular key
- API key 401 error in .env.development file
- How to "Enable mobile data" on a Huawei E3372 4G USB dongle using a bash script in Windows
- ImageMagick / Bash : pipe ignored(?) when filename format variable used
- MacOS Bash-Script: while read p and echo
- Parse command line arguments and write useful usage message without additional code
- JQ JSON - Values to Array
- why variable substitution is so different?
- postbank_pdf2csv: how to setup with Cygwin in Windows?
- Custom Bash functions & custom statements - Need some advice
- unexpected operator == in square brackets when trying to use gum lib
- How to disable a bash builtin inside a docker container
- Use sed or rename find series of alphabet then replace with with the same alphabet and a dash -
Related Questions in SHELL
- macOS - Most secure way of a GUI SUDO_ASKPASS
- When does Bash read heredocs?
- Why `set -o pipefail` gives different output even though the pipe is not failing
- Run multiple shell scripts in Dockerfile
- Alias does not take effect when I use Vim to execute external commands
- why variable substitution is so different?
- Error: fish: ${ is not a valid variable in fish
- Custom Bash functions & custom statements - Need some advice
- unexpected operator == in square brackets when trying to use gum lib
- Delete first three lines containing a certain word
- Keep the log for the last 14 days
- Iterate over items in one array and groups of items in second array
- Keep multi-version of a static-lib like what we do for shared-libs
- How to write function in bash for reuse shell commands inside using osascript?
- Why is it that when I pass certain directory names to `ls`, sometimes it does not list their contents?
Related Questions in CALCULATOR
- My JavaScript calculator is unable to correctly solve a problem with two or more-digit numbers
- How to add Delete button to a calculator
- X is not defined but x has been defined
- Java Calculator Not Working - Need Help Troubleshooting ( Computer Science Beginner )
- In run console image, 5th line from last. Please suggest the corrections
- How to modify probabilities in lotery? - Python
- How can I round numbers with three or more digits after the decimal point accurately?
- I'm getting an unknown error in my c++ project? Cant figure out whats wrong
- Triple input redirection symbol in bash script
- Calculate an expression in java which is accurate upto 19 digits
- I have an issue with the result of additions and subtractions if the result is less than 5. Top many decimals
- Why am I not able to access the meanings API?
- How to add, subtract, multiply and divide two or more negative numbers on a Javascript calculator
- how to store number to calculate in tkinter
- Shunting Yard Algorithm Based Scientific Calculator
Related Questions in BC
- Triple input redirection symbol in bash script
- Implementing cascading in business central for custom tables
- How to filter specific files on a list in folder comparison in BeyondCompare?
- I have built a CLI calculator in Bash and can't figure out why I am getting multiple incorrect calculatons even though I am usine BC
- Post sales order on custom table in AL language
- Beyond compare output option
- `printf "2+2" | bc` returns a syntax error, `echo "2+2" | bc` works, how are they handling strings differently?
- There will be messy code when redirect output of "top" command to a file
- Trouble making mathematical operations with big hexadecimal numbers on bash
- Syntax error while trying to generate a 2048bit long prime number
- How to let bash variable continue get value?
- linux shell scripting error: ./mp.sh: line 10: [: missing `]' File ] is unavailable
- To how many decimal places is bc accurate?
- Is there mathematical (or historical) motivation for including a Bessel function in the GNU bc math library?
- Set output size in bc library
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The
<<<symbol is used to pass a string as the standard input of the command used.It's called a here-string.
The simplest example is with
cat:You can find a first explanation in the man bash page https://www.gnu.org/software/bash/manual/html_node/Redirections.html#Here-Strings