Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- load() { unset -f load
- stop() {
- echo stopped
- }
- start() {
- echo started
- }
- }
- stop # lol nope, no such method
- load # ok
- stop # ok
- load # nope-nope-nope, no such method
- start # ok
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement