You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried to run pbm2lpbm several ways that don't work.
./pbm2lpbm myfile.pbm
./pbm2lpbm $(cat myfile.pbm)
cat myfile.pbm | ./pbm2lpbm
cat myfile.pbm | pbm2lpbm
I finally got it working with this command. ./pbm2lpbm < myfile.pbm > myfile.lpbm
Is this the best way to call it?
I don't know c well enough to make a change but I think the first option above would be the most obvious. Pass in the filename to be converted and it automatically makes a new .lpbm file with the same name.
The text was updated successfully, but these errors were encountered:
I have a valid .pbm P4 image.
I've tried to run pbm2lpbm several ways that don't work.
./pbm2lpbm myfile.pbm
./pbm2lpbm $(cat myfile.pbm)
cat myfile.pbm | ./pbm2lpbm
cat myfile.pbm | pbm2lpbm
I finally got it working with this command.
./pbm2lpbm < myfile.pbm > myfile.lpbm
Is this the best way to call it?
I don't know c well enough to make a change but I think the first option above would be the most obvious. Pass in the filename to be converted and it automatically makes a new .lpbm file with the same name.
The text was updated successfully, but these errors were encountered: