10 lines
124 B
Bash
Executable File
10 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while read -r; do
|
|
collect="$collect / $REPLY"
|
|
done
|
|
|
|
final=$(echo $collect | sed -r 's/^.{2}//')
|
|
|
|
echo $final
|