Welcome to my donations page! This is where you can support my works.
If you enjoy and appreciate my works, consider a donation! =)
lrwxrwxrwx 1 root root 20 Jan 1 06:05 aboot -> /dev/block/mmcblk0p5 | |
lrwxrwxrwx 1 root root 20 Jan 1 06:05 apnhlos -> /dev/block/mmcblk0p1 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 backup -> /dev/block/mmcblk0p19 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 boot -> /dev/block/mmcblk0p16 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 cache -> /dev/block/mmcblk0p25 | |
lrwxrwxrwx 1 root root 20 Jan 1 06:05 ddr -> /dev/block/mmcblk0p4 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 efs -> /dev/block/mmcblk0p13 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 fota -> /dev/block/mmcblk0p18 | |
lrwxrwxrwx 1 root root 21 Jan 1 06:05 fsc -> /dev/block/mmcblk0p20 | |
lrwxrwxrwx 1 root root 20 Jan 1 06:05 fsg -> /dev/block/mmcblk0p9 |
Moved to here.
The C Shell is one of the most reliable Shells I ever worked with. The C Shell inherited features from and is the only continuation on the Thompson Shell and Mashey Shell (the Shells included with Research Unix and PWB Unix, respectively). Erroneously, the C Shell is regarded as bad and glitchy. I beg to differ, though. Due to its "limitations", the C Shell is one of the most reliable Shells to work with. I added some comments on this Perl developer's complaints on the C Shell, in the hope it'll serve as a guide on how to adequately write scripts, as well as to encourage people on not giving up.
The power of a system comes more from the relationships among programs than from the programs themselves.
By following this principle, it's possible to get many interesting things out of Shells and any program at all. Control structures (namely, if/else) can be replaced wi
# $FreeBSD$ | |
# | |
# .cshrc - csh resource script, read at beginning of execution by each shell | |
# | |
# see also csh(1), environ(7). | |
# more examples available at /usr/share/examples/csh/ | |
# | |
alias h history 25 | |
alias j jobs -l |
grep -ao '[\!-~]' < /dev/urandom | \ | |
head -$1 | tr -d '\n' # The first argument defines the length | |
echo "" |
xterm -e su -c "$* &" |
Moved to here.
#!/bin/tcsh -f | |
echo "$1" | ex "$2" |