open(FI,">>/home/path/to/file.txt") or die "Oops file failed: $!"; seek(FI, 0, 2); print FI "username /specific/path /something else\n"; close(FI);