Tagged Questions

0
votes
4answers
98 views

Preserving leading white space while reading>>writing a file line by line in bash

I am trying to loop through a directory of text files and combine them into one document. This works great, but the text files contain code snippets, and all of my formatting is ge …
1
vote
3answers
153 views

Remove empty new lines in a text file via grep

FILE: hello world foo bar How can when remove all the empty new lines in this FILE? Output of command: FILE: hello world foo bar
1
vote
6answers
84 views

Reformat a large text file into one line strings (via BASH)

File1: hello - dictionary definitions: hi hello hallo greetings salutations no more hello for you - world - dictionary definitions: universe everything the globe the biggest tree …
0
votes
4answers
53 views

Remove a variety of lines in a text file

I've been trying to implement a bash script that reads from wordnet's online database and have been wondering if there is a way to remove a variety text files with one command. Ex …
0
votes
5answers
103 views

Remove strings after each first word in a text file

File1: hello (OPTION1) 123456 123456 123456 world (OPTION1) 123456 123456 123456 foo (OPTION1) 123456 123456 123456 bar (OPTION1) 123456 123456 …
1
vote
4answers
43 views

Send the result of multiple commands to one text file?

This is what I have so far - my dropbox public URL creation script for a directory of public URLs (getdropbox.com - gpl I think). My LIST file was created using ls in the following …
0
votes
2answers
46 views

Simplest method to get the dictionary definitions of a list of words in a text file

File1: hello world I don't know the best method to extract a list of words from a text file, find their definitions and paste them into an output textfile. I've been thinking of …
0
votes
1answer
39 views

Passing directory contents as a single line to an executable in Powershell

I have a binary executable that takes a list of file paths as arguments, e.g., C:\Tool.exe C:\Files\File1.txt C:\Files\File2.txt I would like to call this tool from Powershel …
0
votes
0answers
31 views

Microsoft Security Catalog Format Documentation and API Samples

I'm looking for any documentation on the API for working with Microsoft Security Catalogs, or in lieu of that, information on the file format so that I may write my own parser. I …
7
votes
6answers
612 views

Why is my “cat” function with system calls slower compared to Linux’s “cat”?

I've done this function in C using system calls (open, read and write) to simulate the "cat" function in Linux systems and it's slower than the real one... I'm using the same buff …
10
votes
7answers
955 views

How do I program using cat?

In this xkcd comic: they mention that real programmers use cat. Well, I was asking myself: how could you program using the cat command?
0
votes
4answers
389 views

Filenames and linenumbers for the matches of cat and grep

My code $ *.php | grep google How can I print the filenames and linenumbers next to each match?
0
votes
3answers
112 views

problem using cat in windows

I'm using the windowsxp. The version of 'cat' that I'm using comes bundled with the arduino download. The makefile runs cat. Here is the output: cat \arduino-0012\hardware\core …