About 7,860,000 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 …

  2. cat not recognised as an internal or external command

    Oct 25, 2015 · cat is a UNIX command, not available on Windows. openssl is also not going to be available as a command.

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

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

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

  6. cat - How to display contents of all files under a directory on the ...

    Jan 22, 2014 · 56 Using cat command as follows we can display content of multiple files on screen cat file1 file2 file3 But in a directory if there are more than 20 files and I want content of …

  7. unix - Syntax highlighting/colorizing cat - Stack Overflow

    Oct 21, 2011 · Is there a method to colorize the output of cat, the way grep does. For grep, in most consoles it displays a colored output highlighting the searched keywords. Otherwise, you …

  8. How to append output to the end of a text file - Stack Overflow

    Jun 1, 2011 · You can use the >> operator. This will append data from a command to the end of a text file. To test this try running: echo "Hi this is a test" >> textfile.txt Do this a couple of times …

  9. Newest 'CAT' Questions - Stack Overflow

    Oct 18, 2024 · In the following screenshot, on executing the cat command it display the horizontal line then file info with name and then file content. Is this feature from cat or any external lib?

  10. Encode to Base64 a specific file by Windows Command Line

    Jan 5, 2021 · I need to use a command line on Windows OS to generate the base64 data of a specific file on the screen (without generating a file). I have see that on Unix system is …