This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Copied from http://pulpdust.org/item/688 | |
| # | |
| # Kill pulseaudio and GNOME volume control applet before reload snd module. | |
| # You can kill puleaudio as followed: | |
| # $ pulseaudio -k | |
| # | |
| pm=pm-suspend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Corporate Work program | |
| # Author: Masayuki Ataka <[email protected]> | |
| PROGRAM = cwork | |
| CC = gcc | |
| CFLAGS = -W -Wall -g -O2 -std=c99 | |
| CPPFLAGS = -DDEBUG | |
| GNUPLOT = gnuplot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Queue sample program | |
| # Author: Masayuki Ataka <[email protected]> | |
| PROGRAM = queue | |
| CC = gcc | |
| CFLAGS = -W -Wall -g -O2 -std=c99 | |
| CPPFLAGS = -DDEBUG | |
| all: $(PROGRAM) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| path=$1 | |
| other=/home/project/olddir | |
| diff -bu -x "*.rej" $other/$path $path |
NewerOlder