File: exec-anything.bash.txt

package info (click to toggle)
lg-issue95 1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 928 kB
  • ctags: 57
  • sloc: sh: 40; makefile: 34
file content (12 lines) | stat: -rw-r--r-- 168 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

echo "This will appear stay here"
echo "Press ^C to abort...."

sleep 1
exec $0

#I could add a line here such as:
echo "Hmm, I won't ever appear"

exit 0