Search Results

2
votes

how do you search for files containing dos line endings (CRLF) with grep under linux?

grep probably isn't the tool you want for this. It will print a line for every matching line in every file. Unless you want to, say, run todos 10 times on a 10 line file, grep isn't the best way …
2
votes

Change IP address via shellscript on Slackware

As mentioned in other answers, you can use either the ifconfig command or the ip command. ip is a much more robust command, and I prefer to use it. A full script which loops through a full class …