6 lines
234 B
Plaintext
6 lines
234 B
Plaintext
|
#!/bin/bash
|
||
|
rm -rf work
|
||
|
mkdir work
|
||
|
wget --http-user=peter --http-password=opal --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/post.html?id=1\&amount=5.00
|
||
|
cat -n work/* | less
|