Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. echo $(echo "a b c def ghi")
  2. echo "$(echo \"a b c def ghi\")"
  3. echo "a$(echo \"a b c def ghi\")b"
  4. echo '$(echo "a b c def ghi")'
  5. echo $(ls)
  6. echo $(ls -lar) | grep -o bg.c
  7. echo $(ls -lartR) | grep -o bg.c
  8. echo oops$(ls -l) | grep -o oopstotal
  9. echo $HOME$(ls -l) | grep -o ${HOME}total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement