Sort by

recency

|

50 Discussions

|

  • + 0 comments
    tr -d [:lower:]
    
  • + 0 comments

    you can use

    tr -d 'a-z'
    
  • + 0 comments
    #!/bin/bash
    tr -d [:lower:]
    
  • + 0 comments
    while read FILE;
    do
        echo "${FILE}" >> file.txt
    done
    tr -d 'a-z' < file.txt
    
  • + 0 comments

    tr -d "[a-z]"