We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
'Tr' Command #1
'Tr' Command #1
+ 0 comments while read input; do echo $input | tr "()" "[]" done echo $input | tr "()" "[]"
+ 0 comments tr '()' '[]'
+ 0 comments #!/bin/bash while IFS= read -r line || [ -n "$line" ]; do echo "$line" | tr '()' '[]' done
+ 0 comments You can find here HackerRank Linux Shell Solutions
+ 0 comments tr '()' '[]'
Load more conversations
Sort 53 Discussions, By:
Please Login in order to post a comment