About 50 results
Open links in new tab
  1. linux - How does "cat << EOF" work in bash? - Stack Overflow

    The cat <<EOF syntax is very useful when working with multi-line text in Bash, eg. when assigning multi-line string to a shell variable, file or a pipe. Examples of cat <<EOF syntax usage in Bash:

  2. unix - How to pipe list of files returned by find command to cat to ...

    May 14, 2009 · I am doing a find to get a list of files. How do I pipe it to another utility like cat so that cat displays the contents of all those files? Afterwards, I'd use grep on that to search some text in ...

  3. python - `stack ()` vs `cat ()` in PyTorch - Stack Overflow

    Apr 1, 2022 · xnew_from_cat = torch.cat((x, x, x), 1) print(f'{xnew_from_cat.size()}') print() # stack serves the same role as append in lists. i.e. it doesn't change the original # vector space but instead adds a …

  4. How do I read the first line of a file using cat? - Stack Overflow

    May 24, 2011 · How do I read the first line of a file using cat? Asked 14 years, 10 months ago Modified 5 years, 5 months ago Viewed 418k times

  5. How to cat <<EOF >> a file containing code? - Stack Overflow

    1 cat with <<EOF>> will create or append the content to the existing file, won't overwrite. whereas cat with <<EOF> will create or overwrite the content.

  6. Is there replacement for cat on Windows - Stack Overflow

    Is there replacement for cat on Windows [closed] Asked 17 years, 6 months ago Modified 1 year ago Viewed 553k times

  7. Can linux cat command be used for writing text to file?

    cat "Some text here." > myfile.txt Possible? Such that the contents of myfile.txt would now be overwritten to: Some text here. This doesn't work for me, but also doesn't throw any errors. Specifically …

  8. How to get the last line of a file using cat command

    Oct 18, 2016 · I am writing a shell script in OSX(unix) environment. I have a file called test.properties with the following content: cat test.properties gets the following output: //This file is intended for ...

  9. What is the difference between cat and print? - Stack Overflow

    cat is valid only for atomic types (logical, integer, real, complex, character) and names. It means you cannot call cat on a non-empty list or any type of object. In practice it simply converts arguments to …

  10. What does `cat-file` stand for in git? - Stack Overflow

    Jul 4, 2016 · While cat does stand for "concatenate", what it actually does is simply display one or multiple files, in order of their appearance in the command line arguments to cat. The common …