7 lines
92 B
Bash
7 lines
92 B
Bash
#!/bin/sh
|
|
|
|
while [ 1 -eq 1 ]; do
|
|
ln -fs ./input ./link
|
|
ln -fs /challenge/flag ./link
|
|
done
|