summaryrefslogtreecommitdiff
path: root/day1/ex02/find_sh.sh
blob: 9e77904a80ae0fd55e1c808268c2ea215f39350f (plain)
1
2
3
4
#!/bin/sh
# Shell Script that tries to match all files except for those ending in the extension .sh

ls | grep -v "*.sh"