14 Feb
2006
14 Feb
'06
17:13
Hallo, Am Tue, 14 Feb 2006, Jens Daniel Schmidt schrieb:
Also so (siehe unten) funktioniert es bei mir :) (ist auch etwas schneller als mit einem slepp 3 für jeden neuen user)
#!/bin/sh
if test $1 then FILE=$1 else FILE="benutzer.txt" fi
FILE="${1:-benutzer.txt}"
for newuser in `cat $FILE`
Schlecht. while read -r newuser; do ... done < "$FILE" -dnh -- Our lives are about development, mutation and the possibility of change; that is almost a definition of what life is: change. -- "Look to Windward", Iain M. Banks