I was required to run a makefile on mint, I input the option 'clean' about:
clean:
<tab> rm -f test_{a,b}.o
I type this order in shells rm -f test_{a,b}.o
, and it do delete the file test_a.o
and test_b.o
, but it doesn't work on Mint OS, but it work on CentOS7.
I want to find the reason for this problem. now I use rm -f test_a.o test_b.o
instead temporarily.