Changes

Talk:Mint Linux Distribution Reference

233 bytes added, 00:47, 3 January 2018
/* Determine length of longest line in a text file */ new section
The following lines were added (+) and removed (-):
== Determine length of longest line in a text file ==Use wc wc -L filenameor use a shell script #!/bin/sh MAX=0 IFS= while read -r line; do  if [ ${#line} -gt $MAX ]; then MAX=${#line}; fi done < "$1" printf "$MAX\n"
Bureaucrat, administrator
14,711
edits