$ls robinsons.iso robinsons.iso $ls | grep robinsons.iso | xargs rm $ls robinsons.iso ls: cannot access robinsons.iso: No such file or directory $ xargs – build and execute command lines from standard input This manual page documents the GNU version of xargs. xargs reads items from the standard input, delimited by blanks (which can be protected …
Tag Archives: input
fold — wrapping
$fold -w 3 what is your name wha t i s y our na me $fold -b 3 fold: 3: No such file or directory $fold -b3 what is your name wha t i s y our na me $fold -s3 what is your name wha t is you r nam e $ fold – …