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. python - `stack ()` vs `cat ()` in PyTorch - Stack Overflow

    Apr 1, 2022 · One is using torch.cat, the other uses torch.stack, for similar use cases. As far as my understanding goes, the doc doesn't give any clear distinction between them. I would be happy to …

  3. 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, 11 months ago Modified 5 years, 5 months ago Viewed 419k times

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

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

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

    0 Since nobody else answered the original question. Yes. cat can be used to write text to a file without a here doc.

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

    May 14, 2009 · There are a few ways to pass the list of files returned by the find command to the cat command, though technically not all use piping, and none actually pipe directly to cat.

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

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

  9. linux - How can I copy the output of a command directly into my ...

    May 25, 2017 · How can I pipe the output of a command into my clipboard and paste it back when using a terminal? For instance: cat file | clipboard

  10. linux - Retrieve last 100 lines logs - Stack Overflow

    Aug 6, 2018 · I need to retrieve last 100 lines of logs from the log file. I tried the sed command sed -n -e '100,$p' logfilename Please let me know how can I change this command ...