having issues in using Cut Command

Hi,

I would like to ask for your help with my problem,

im writing a unix script to remove characters before the symbol "/", but the one being removed are characters after the symbol. Ive searched over the internet and found no answer.. hope you can help me with this.

sample:
text file, temp.log contains:

file-sam-wizs/296596.pdf
file-sam-wizs/0307444.pdf
file-sam-001/362261.pdf
file-sam-001/362265.pdf
file-sam-001/362268.pdf
file-sam-001/362270.pdf
file-sam-001/362272.pdf
file-sam-001/362273.pdf
file-sam-3/362275.pdf
file-sam-3/362276.pdf
file-sam-3/362278.pdf
file-sam-3/362280.pdf
file-sam-003/362281.pdf
file-sam-3/362283.pdf
file-sam-4/362285.pdf
file-sam-004/362289.pdf
file-sam-004/362311.pdf
file-sam-004/362352.pdf
file-sam-4/362353.pdf
file-sam-4/362354.pdf
file-sam-002/362241.pdf
file-sam-002/362247.pdf
file-sam-002/362251.pdf
file-sam-002/362252.pdf
file-sam-002/362254.pdf
file-sam-002/362258.pdf

when i run the following command:

cut -d'/' -f 1,1 temp_file.log

This is the result,

file-sam-wizs
file-sam-wizs
file-sam-001
file-sam-001
file-sam-001
file-sam-001
file-sam-001
file-sam-001
file-sam-3
file-sam-3
file-sam-3
file-sam-3
file-sam-003
file-sam-3
file-sam-4
file-sam-004
file-sam-004

where the expected output should be:

 
296596.pdf
0307444.pdf
362261.pdf
362265.pdf
362268.pdf
362270.pdf
362272.pdf
362273.pdf
362275.pdf
362276.pdf
362278.pdf
362280.pdf
362281.pdf
362283.pdf
362285.pdf
362289.pdf
362311.pdf
362352.pdf
362353.pdf
362354.pdf
362241.pdf
362247.pdf
362251.pdf
362252.pdf
362254.pdf

Even if i change the value of -f 1,1 it has no effect. I would really appreciate your help guys..
thank you very much.

cut -d '/' -f2 temp_file.log

thank you very much!!! it worked!!!