2017-07-16 23:16:01 +03:00
|
|
|
|
---
|
2019-03-08 19:22:26 +03:00
|
|
|
|
category: tool
|
|
|
|
|
tool: tcsh
|
2017-07-16 23:16:01 +03:00
|
|
|
|
filename: LearnTCSH.csh
|
|
|
|
|
contributors:
|
2017-08-25 11:30:10 +03:00
|
|
|
|
- ["Nicholas Christopoulos", "https://github.com/nereusx"]
|
|
|
|
|
|
2017-07-16 23:16:01 +03:00
|
|
|
|
---
|
|
|
|
|
tcsh ("tee-see-shell") is a Unix shell based on and compatible with the C shell (csh).
|
|
|
|
|
It is essentially the C shell with programmable command-line completion, command-line editing,
|
|
|
|
|
and a few other features.
|
|
|
|
|
It is the native root shell for BSD-based systems such as FreeBSD.
|
|
|
|
|
|
|
|
|
|
Almost all Linux distros and BSD today use tcsh instead of the original csh. In
|
|
|
|
|
most cases csh is a symbolic link that points to tcsh.
|
|
|
|
|
This is because tcsh is backward compatible with csh, and the last
|
|
|
|
|
is not maintained anymore.
|
|
|
|
|
|
|
|
|
|
- [TCSH Home](http://www.tcsh.org/)
|
|
|
|
|
- [TCSH Wikipedia](https://en.wikipedia.org/wiki/Tcsh)
|
|
|
|
|
- [TCSH manual page](http://www.tcsh.org/tcsh.html/top.html)
|
|
|
|
|
- [“An Introduction to the C shell”, William Joy](https://docs.freebsd.org/44doc/usd/04.csh/paper.html)
|
|
|
|
|
- [TCSH Bug reports and/or features requests](https://bugs.gw.com/)
|
|
|
|
|
|
|
|
|
|
Some more files:
|
|
|
|
|
[tcsh help command (for 132x35 terminal size)](https://github.com/nereusx/dotfiles/blob/master/csh-help),
|
|
|
|
|
[my ~/.tcshrc](https://github.com/nereusx/dotfiles/blob/master/.tcshrc)
|
|
|
|
|
|
|
|
|
|
```tcsh
|
|
|
|
|
#!/bin/tcsh
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# The first line of the script is a shebang which tells the system how to execute
|
|
|
|
|
# the script: http://en.wikipedia.org/wiki/Shebang_(Unix)
|
|
|
|
|
# TCSH emulates the shebang on systems that don't understand it.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# In most cases you'll use `#!/bin/tcsh -f`, because `-f` option does not load
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# any resource or start-up files, or perform any command hashing, and thus
|
|
|
|
|
# starts faster.
|
|
|
|
|
|
|
|
|
|
# --- the echo command --------------------------------------------------------
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# The `echo` writes each word to the shell's standard output, separated by
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# spaces and terminated with a newline. The echo_style shell variable may be
|
|
|
|
|
# set to emulate (or not) the flags and escape sequences.
|
|
|
|
|
|
|
|
|
|
# Display the value of echo_style
|
|
|
|
|
echo $echo_style
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Enable `echo` to support backslashed characters and `-n` option (no new line)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# This is the default for tcsh, but your distro may change it. Slackware has
|
|
|
|
|
# done so.
|
|
|
|
|
set echo_style = both
|
|
|
|
|
|
|
|
|
|
# Prints "Hello world"
|
|
|
|
|
echo Hello world
|
|
|
|
|
echo "Hello world"
|
|
|
|
|
echo 'Hello world'
|
|
|
|
|
echo `echo Hello world`
|
|
|
|
|
|
|
|
|
|
# This prints "twonlines" in one line
|
|
|
|
|
echo two\nlines
|
|
|
|
|
|
|
|
|
|
# Prints the two lines
|
|
|
|
|
echo "two\nlines"
|
|
|
|
|
echo 'two\nlines'
|
|
|
|
|
|
|
|
|
|
# --- Basic Syntax ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# A special character (including a blank or tab) may be prevented from having
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# its special meaning by preceding it with a backslash `\`.
|
|
|
|
|
# This will display the last history commands
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo !!
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# This will not
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo \!\!
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Single quotes prevent expanding special characters too, but some
|
|
|
|
|
# characters like `!` and backslash have higher priority
|
|
|
|
|
# `$` (variable value) will not expand
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo '$1 tip'
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# `!` (history) will expand
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo '!!'
|
|
|
|
|
|
|
|
|
|
# Strings enclosed by back-quotes will be executed and replaced by the result.
|
|
|
|
|
echo `ls`
|
|
|
|
|
|
|
|
|
|
# Semi-colon separate commands
|
|
|
|
|
echo 'first line'; echo 'second line'
|
|
|
|
|
|
|
|
|
|
# There is also conditional execution
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "Always executed" || echo "Only executed if the first command fails"
|
|
|
|
|
echo "Always executed" && echo "Only executed if the first command does NOT fail"
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# Parenthesised commands are always executed in a subshell,
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# example: creates a project and then informs you that it finished while
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# it does the installation.
|
|
|
|
|
make && ( espeak "BOSS, compilation finished"; make install )
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# prints the home directory but leaves you where you were
|
2017-07-16 23:16:01 +03:00
|
|
|
|
(cd; pwd); pwd
|
|
|
|
|
|
|
|
|
|
# Read tcsh man-page documentation
|
|
|
|
|
man tcsh
|
|
|
|
|
|
|
|
|
|
# --- Variables ---------------------------------------------------------------
|
|
|
|
|
# The shell maintains a list of variables, each of which has as value a list of
|
|
|
|
|
# zero or more words. The values of shell variables can be displayed and
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# changed with the `set` and `unset` commands.
|
|
|
|
|
# The system maintains its own list of "environment" variables.
|
|
|
|
|
# These can be displayed and changed with `printenv`, `setenv`, and `unsetenv`.
|
|
|
|
|
# The syntax of `setenv` is similar to POSIX sh.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# Assign a value or nothing will create a variable
|
|
|
|
|
# Assign nothing
|
|
|
|
|
set var
|
|
|
|
|
# Assign a numeric value
|
|
|
|
|
# the '@' denotes the expression is arithmetic; it works similar to 'set' but
|
|
|
|
|
# the right value can be a numeric expression.
|
|
|
|
|
@ var = 1 + 2
|
|
|
|
|
# Assign a string value
|
|
|
|
|
set var = "Hello, I am the contents of 'var' variable"
|
|
|
|
|
# Assign the output of a program
|
|
|
|
|
set var = `ls`
|
|
|
|
|
|
|
|
|
|
# Remove a variable
|
|
|
|
|
unset var
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Prints 1 (true) if the variable `var` exists otherwise prints 0 (false)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo $?var
|
|
|
|
|
# Print all variables and their values
|
|
|
|
|
set
|
|
|
|
|
|
|
|
|
|
# Prints the contents of 'var'
|
|
|
|
|
echo $var;
|
|
|
|
|
echo "$var";
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Prints the string `$var`
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo \$var
|
|
|
|
|
echo '$var'
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Braces can be used to separate variables from the rest when it is needed
|
2017-07-16 23:16:01 +03:00
|
|
|
|
set num = 12; echo "There ${num}th element"
|
|
|
|
|
|
|
|
|
|
# Prints the number of characters of the value: 6
|
|
|
|
|
set var = '123456'; echo $%var
|
|
|
|
|
|
|
|
|
|
### LISTs
|
|
|
|
|
# Assign a list of values
|
|
|
|
|
set var = ( one two three four five )
|
|
|
|
|
# Print all the elements: one two three four five
|
|
|
|
|
echo $var
|
|
|
|
|
echo $var[*]
|
|
|
|
|
# Print the count of elements: 5
|
|
|
|
|
echo $#var
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Print the indexed element; This prints the second element: two
|
2017-07-16 23:16:01 +03:00
|
|
|
|
echo $var[2]
|
|
|
|
|
# Print range of elements; prints 2nd up to 3rd: two, three
|
|
|
|
|
echo $var[2-3]
|
|
|
|
|
# Prints all elements starting from the 3rd: three four five
|
|
|
|
|
echo $var[3-]
|
|
|
|
|
# Prints print all up to 3rd element: one two three
|
|
|
|
|
echo $var[-3]
|
|
|
|
|
|
|
|
|
|
### Special Variables
|
|
|
|
|
# $argv list of command-line arguments
|
|
|
|
|
# $argv[0] this file-name (the file of the script file)
|
|
|
|
|
# $# $0, $n, $* are the same as $#argv, $argv[0], $argv[n], $argv[*]
|
|
|
|
|
# $status, $? the exit code of the last command that executed
|
|
|
|
|
# $_ the previous command line
|
|
|
|
|
# $! the PID of the last background process started by this shell
|
|
|
|
|
# $$ script's PID
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# $path, $PATH the list of directories that will search for an executable to run
|
|
|
|
|
# $home, $HOME user's home directory, also the `~` can be used instead
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# $uid user's login ID
|
|
|
|
|
# $user user's login name
|
|
|
|
|
# $gid the user's group ID
|
|
|
|
|
# $group the user's group-name
|
|
|
|
|
# $cwd, $PWD the Current/Print Working Directory
|
|
|
|
|
# $owd the previous working directory
|
|
|
|
|
# $tcsh tcsh version
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# $tty the current tty; ttyN for Linux console, pts/N for terminal
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# emulators under X
|
|
|
|
|
# $term the terminal type
|
|
|
|
|
# $verbose if set, causes the words of each command to be printed.
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# can be set by the `-v` command line option too.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# $loginsh if set, it is a login shell
|
|
|
|
|
|
|
|
|
|
# TIP: $?0 is always false in interactive shells
|
|
|
|
|
# TIP: $?prompt is always false in non-interactive shells
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# TIP: if `$?tcsh` is unset; you run the original `csh` or something else;
|
|
|
|
|
# try `echo $shell`
|
|
|
|
|
# TIP: `$verbose` is useful for debugging scripts
|
|
|
|
|
# NOTE: `$PWD` and `$PATH` are synchronised with `$cwd` and `$pwd` automatically.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# --- Variable modifiers ------------------------------------------------------
|
|
|
|
|
# Syntax: ${var}:m[:mN]
|
|
|
|
|
# Where <m> is:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# h : the directory t : the filename r : remove extension e : the extension
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# u : uppercase the first lowercase letter
|
|
|
|
|
# l : lowercase the first uppercase letter
|
|
|
|
|
# p : print but do not execute it (hist)
|
|
|
|
|
# q : quote the substituted words, preventing further substitutions
|
|
|
|
|
# x : like q, but break into words at white spaces
|
|
|
|
|
# g : apply the following modifier once to each word
|
|
|
|
|
# a : apply the following modifier as many times as possible to single word
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# s/l/r/ : search for `l` and replace with `r`, not regex; the `&` in the `r` is
|
|
|
|
|
# replaced by `l`
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# & : Repeat the previous substitution
|
|
|
|
|
|
|
|
|
|
# start with this file
|
|
|
|
|
set f = ~/Documents/Alpha/beta.txt
|
|
|
|
|
# prints ~/Documents/Alpha/beta
|
|
|
|
|
echo $f:r
|
|
|
|
|
# prints ~/Documents/Alpha
|
|
|
|
|
echo $f:h
|
|
|
|
|
# prints beta.txt
|
|
|
|
|
echo $f:t
|
|
|
|
|
# prints txt
|
|
|
|
|
echo $f:e
|
|
|
|
|
# prints beta
|
|
|
|
|
echo $f:t:r
|
|
|
|
|
# prints Beta
|
|
|
|
|
echo $f:t:r:u
|
|
|
|
|
# prints Biota
|
|
|
|
|
echo $f:t:r:u:s/eta/iota/
|
|
|
|
|
|
|
|
|
|
# --- Redirection -------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# Create file.txt and write the standard output to it
|
|
|
|
|
echo 'this string' > file.txt
|
|
|
|
|
# Create file.txt and write the standard output and standard error to it
|
|
|
|
|
echo 'this string' >& file.txt
|
|
|
|
|
# Append the standard output to file.txt
|
|
|
|
|
echo 'this string' >> file.txt
|
|
|
|
|
# Append the standard output and standard error to file.txt
|
|
|
|
|
echo 'this string' >>& file.txt
|
|
|
|
|
# Redirect the standard input from file.txt
|
|
|
|
|
cat < file.txt
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Input from keyboard; this stores the input line to variable `x`
|
2017-07-16 23:16:01 +03:00
|
|
|
|
set x = $<
|
|
|
|
|
# Document here;
|
|
|
|
|
cat << LABEL
|
|
|
|
|
...text here...
|
|
|
|
|
LABEL
|
|
|
|
|
|
|
|
|
|
# TIP: this is how to get standard error separated:
|
|
|
|
|
(grep 'AGP' /usr/src/linux/Documentation/* > output-file.txt) >& error-file.txt
|
|
|
|
|
|
|
|
|
|
# example: read a name from standard input and display a greetings message
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo -n "Enter your name: "
|
2017-07-16 23:16:01 +03:00
|
|
|
|
set name = $<
|
|
|
|
|
echo "Greetings $name"
|
|
|
|
|
|
|
|
|
|
# --- Expressions ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# Operators:
|
|
|
|
|
# == equal != not equal ! not
|
|
|
|
|
# > greater than < less than >= greater or equal <= less or equal
|
|
|
|
|
# && logical AND || logical OR
|
|
|
|
|
|
|
|
|
|
if ( $name != $user ) then
|
|
|
|
|
echo "Your name isn't your username"
|
|
|
|
|
else
|
|
|
|
|
echo "Your name is your username"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# single-line form
|
|
|
|
|
if ( $name != $user ) echo "Your name isn't your username"
|
|
|
|
|
|
|
|
|
|
# NOTE: if $name is empty, tcsh sees the above condition as:
|
|
|
|
|
# if ( != $user ) ...
|
|
|
|
|
# which is invalid syntax
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# The "safe" way to use potentially empty variables in tcsh is:
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# if ( "$name" != $user ) ...
|
|
|
|
|
# which, when $name is empty, is seen by tcsh as:
|
|
|
|
|
# if ( "" != $user ) ...
|
|
|
|
|
# which works as expected
|
|
|
|
|
|
|
|
|
|
# There is also conditional execution
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "Always executed" || echo "Only executed if the first command fails"
|
|
|
|
|
echo "Always executed" && echo "Only executed if the first command does NOT fail"
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# To use && and || with if statements, you don't need multiple pairs of
|
|
|
|
|
# square brackets:
|
|
|
|
|
if ( "$name" == "Steve" && "$age" == 15 ) then
|
|
|
|
|
echo "This will run if $name is Steve AND $age is 15."
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if ( "$name" == "Daniya" || "$name" == "Zach" ) then
|
|
|
|
|
echo "This will run if $name is Daniya OR Zach."
|
|
|
|
|
endif
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# String matching operators ( `=~` and `!~` )
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# The ‘==’ ‘!=’ ‘=~’ and ‘!~’ operators compare their arguments as strings;
|
|
|
|
|
# all others operate on numbers. The operators ‘=~’ and ‘!~’ are like ‘!=’
|
|
|
|
|
# and ‘==’ except that the right hand side is a glob-pattern against which
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# the left-hand operand is matched.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
if ( $user =~ ni[ck]* ) echo "Greetings Mr. Nicholas."
|
2023-11-26 14:07:20 +03:00
|
|
|
|
if ( $user !~ ni[ck]* ) echo "Hey, get out of Nicholas' PC."
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# Arithmetic expressions are denoted with the following format:
|
|
|
|
|
@ result = 10 + 5
|
|
|
|
|
echo $result
|
|
|
|
|
|
|
|
|
|
# Arithmetic Operators
|
|
|
|
|
# +, -, *, /, %
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Arithmetic Operators which must be parenthesized
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# !, ~, |, &, ^, ~, <<, >>,
|
|
|
|
|
# Compare and logical operators
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# All operators are the same as in C.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# It is non so well documented that numeric expressions require spaces
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# in-between; Also, `@` has its own parser, it seems that it works well when
|
|
|
|
|
# the expression is parenthesized, otherwise the primary parser seems to be
|
|
|
|
|
# active. Parentheses require spaces around, this is documented.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# wrong
|
|
|
|
|
@ x = $y+1
|
|
|
|
|
@ x = 0644 & 022; echo $x
|
|
|
|
|
@ x = (0644 & 022) +1; echo $x
|
|
|
|
|
@ x = (0644 & 022)+ 1; echo $x
|
|
|
|
|
@ x = ( ~077 ); echo $x
|
|
|
|
|
|
|
|
|
|
# correct
|
|
|
|
|
@ x = $y + 1
|
|
|
|
|
@ x = ( 0644 & 022 ) + 1; echo $x
|
|
|
|
|
@ x = ( ~ 077 ); echo $x
|
|
|
|
|
@ x = ( ~ 077 | 022 ); echo $x
|
|
|
|
|
@ x = ( ! 0 ); echo $x
|
|
|
|
|
|
|
|
|
|
# C's operators ++ and -- are supported if there is not assignment
|
|
|
|
|
@ result ++
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# No shell was created to do mathematics;
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# Except for the basic operations, use an external command with backslashes.
|
|
|
|
|
#
|
|
|
|
|
# I suggest the calc as the best option.
|
|
|
|
|
# (http://www.isthe.com/chongo/tech/comp/calc/)
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# The standard Unix's bc as the second option
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# (https://www.gnu.org/software/bc/manual/html_mono/bc.html)
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# The standard Unix's AWK as the third option
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# (https://www.gnu.org/software/gawk/manual/gawk.html)
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# You can also use `Perl`, `PHP`, `python`, or even several BASICs, but prefer
|
|
|
|
|
# the above utilities for faster load-and-run results.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# real example: (that I answer in StackExchange)
|
|
|
|
|
# REQ: x := 1001b OR 0110b
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# in `tcsh` expression (by using octal)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
@ x = ( 011 | 06 ); echo $x
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# the same by using `calc` (and using binary as the original req)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
set x = `calc '0b1001 | 0b110'`; echo $x
|
|
|
|
|
|
|
|
|
|
# --- File Inquiry Operators --------------------------------------------------
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# NOTE: The built-in `filetest` command does the same thing.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
#### Boolean operators
|
|
|
|
|
# -r read access -w write access -x execute access -e existence
|
|
|
|
|
# -f plain file -d directory -l symbolic link -p named pipe
|
|
|
|
|
# -S socket file
|
|
|
|
|
# -o ownership -z zero size -s non-zero size
|
|
|
|
|
# -u SUID is set -g SGID is set -k sticky is set
|
|
|
|
|
# -b block device -c char device
|
|
|
|
|
# -t file (digit) is an open file descriptor for a terminal device
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# If the file `README` exists, display a message
|
2017-07-16 23:16:01 +03:00
|
|
|
|
if ( -e README ) echo "I have already README file"
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# If the `less` program is installed, use it instead of `more`
|
2017-07-16 23:16:01 +03:00
|
|
|
|
if ( -e `where less` ) then
|
2023-11-26 14:07:20 +03:00
|
|
|
|
alias more 'less'
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
#### Non-boolean operators
|
|
|
|
|
# -Z returns the file size in bytes
|
|
|
|
|
# -M returns the modification time (mtime) -M: returns mtime string
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# -A returns the last access time (atime) -A: returns atime string
|
|
|
|
|
# -U returns the owner's user ID -U: returns the owner's user name
|
|
|
|
|
# -G returns the owner's group ID -G: returns the owner's group name
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# -P returns the permissions as octal number -Pmode returns perm. AND mode
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# this will display the date as a Unix-time integer: 1498511486
|
2017-07-16 23:16:01 +03:00
|
|
|
|
filetest -M README.md
|
|
|
|
|
|
|
|
|
|
# This will display "Tue Jun 27 00:11:26 2017"
|
|
|
|
|
filetest -M: README.md
|
|
|
|
|
|
|
|
|
|
# --- Basic Commands ----------------------------------------------------------
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Navigate through the filesystem with `chdir` (cd)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
cd path # change working directory
|
2023-11-26 14:07:20 +03:00
|
|
|
|
cd # change to the home directory
|
|
|
|
|
cd - # change to the previous directory
|
2017-07-16 23:16:01 +03:00
|
|
|
|
cd .. # go up one directory
|
|
|
|
|
|
|
|
|
|
# Examples:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
cd ~/Downloads # go to my `Downloads` directory
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# Use `mkdir` to create new directories.
|
|
|
|
|
mkdir newdir
|
|
|
|
|
# The `-p` flag causes new intermediate directories to be created as necessary.
|
|
|
|
|
mkdir -p ~/.backup/saves
|
|
|
|
|
|
|
|
|
|
# which & where
|
|
|
|
|
# find if csh points to tcsh
|
|
|
|
|
ls -lha `which csh`
|
|
|
|
|
# find if csh is installed on more than one directory
|
|
|
|
|
where csh
|
|
|
|
|
|
|
|
|
|
# --- Pipe-lines --------------------------------------------------------------
|
|
|
|
|
# A pipeline is a sequence of processes chained together by their standard
|
|
|
|
|
# streams, so that the output of each process (stdout) feeds directly as input
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# (stdin) to the next one. These `pipes` are created with the `|` special
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# character and it is one of the most powerful characteristics of Unix.
|
|
|
|
|
|
|
|
|
|
# example:
|
|
|
|
|
ls -l | grep key | less
|
|
|
|
|
# "ls -l" produces a process, the output (stdout) of which is piped to the
|
|
|
|
|
# input (stdin) of the process for "grep key"; and likewise for the process
|
|
|
|
|
# for "less".
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# the `ls`, the `grep`, and the `less` are Unix programs and they have their
|
|
|
|
|
# own man-page. The `pipe` mechanism is part of the kernel but the syntax
|
|
|
|
|
# and the control is the shell's job, the tcsh in our case.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# NOTE: Windows has the `pipe` mechanism too, but it is buggy and I signed it
|
|
|
|
|
# for all versions until Windows XP SP3 API32 which was the last one that I
|
|
|
|
|
# worked on. Microsoft denied it, but it is a well-known bug since it is a
|
|
|
|
|
# common method for inter-process communication. For small I/O it will work well.
|
|
|
|
|
# tcsh, along with grep, GCC, and Perl is one of the first Unix programs that
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# ported to DOS (with EMX DOS extender) and later to Windows (1998).
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# example: this will convert tcsh to PostScript and will show it with Okular
|
2017-07-16 23:16:01 +03:00
|
|
|
|
zcat /usr/man/man1/tcsh.1.gz | groff -Tps -man | okular -
|
|
|
|
|
|
|
|
|
|
# a better version
|
|
|
|
|
zcat `locate -b -n 1 '\tcsh.1.gz'` | groff -Tps -man | okular -
|
|
|
|
|
|
|
|
|
|
# even better
|
|
|
|
|
set page = tcsh; set loc = (locate -b -n 1 "\\\\"${page}".1.gz");
|
|
|
|
|
zcat `eval $loc` | groff -Tps -man | okular -
|
|
|
|
|
|
|
|
|
|
# the same, modified to create man page pdf
|
|
|
|
|
set page = tcsh; set loc = (locate -b -n 1 "\\\\"${page}".1.gz");
|
|
|
|
|
zcat `eval $loc` | groff -Tps -man | ps2pdf - ${page}.pdf
|
|
|
|
|
|
|
|
|
|
# the same, but now shows the ${page}.pdf too
|
|
|
|
|
set page = tcsh; set loc = (locate -b -n 1 "\\\\"${page}".1.gz");
|
|
|
|
|
zcat `eval $loc` | groff -Tps -man | ps2pdf - ${page}.pdf && okular tcsh.pdf
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# NOTE: `okular` is the default application of the KDE environment and it shows
|
|
|
|
|
# postcript and pdf files. You can replace it with your lovely PDF viewer.
|
|
|
|
|
# `zcat`, `locate`, `groff`, are common programs in all Unixes. The `ps2pdf`
|
|
|
|
|
# program is part of the `ghostscript` package that is widely used.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# --- Control Flow ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#### IF-THEN-ELSE-ENDIF
|
|
|
|
|
# Syntax:
|
|
|
|
|
# if ( expr ) then
|
|
|
|
|
# ...
|
|
|
|
|
# [else if ( expr2 ) then
|
|
|
|
|
# ...]
|
|
|
|
|
# [else
|
|
|
|
|
# ...]
|
|
|
|
|
# endif
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# If the specified `expr` is true then the commands to the first else are
|
|
|
|
|
# executed; otherwise if `expr2` is true then the commands to the second else
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# are executed, etc.
|
|
|
|
|
# Any number of else-if pairs are possible; only one endif is needed.
|
|
|
|
|
#
|
|
|
|
|
# Single-line form:
|
|
|
|
|
#
|
|
|
|
|
# if ( expr ) command
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# If `expr` evaluates to true, then the command is executed.
|
|
|
|
|
# `command` must be a simple command, not an alias, a pipeline, a command list
|
|
|
|
|
#, or a parenthesized command list. With a few words, avoid using it.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# BUG: Input/output redirection occurs even if expr is false and the command
|
|
|
|
|
# is thus not executed.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
|
|
|
|
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# check if we are in a non-interactive shell and quit if true
|
2017-07-16 23:16:01 +03:00
|
|
|
|
if ( $?USER == 0 || $?prompt == 0 ) exit
|
|
|
|
|
|
|
|
|
|
# check if we are a login shell
|
|
|
|
|
if ( $?loginsh ) then
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# check if you are on linux console (not X's terminal)
|
|
|
|
|
if ( $tty =~ tty* ) then
|
|
|
|
|
# enable keypad application keys (man console_codes)
|
|
|
|
|
echo '\033='
|
|
|
|
|
endif
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
#### SWITCH-ENDSW
|
|
|
|
|
# Syntax:
|
|
|
|
|
# switch ( expr )
|
|
|
|
|
# case pattern:
|
|
|
|
|
# ...
|
|
|
|
|
# [breaksw]
|
|
|
|
|
# [default:
|
|
|
|
|
# ...]
|
|
|
|
|
# endsw
|
|
|
|
|
#
|
|
|
|
|
# tcsh uses a case statement that works similarly to switch in C.
|
|
|
|
|
# Each case label is successively matched, against the specified string which
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# is first command and filename expanded. The file metacharacters `*`, `?`
|
|
|
|
|
# and `[...]` may be used in the case labels. If none of the labels match the
|
|
|
|
|
# execution begins after the default label if it's defined.
|
|
|
|
|
# The command `breaksw` causes execution to continue after the endsw. Otherwise,
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# control may fall through case labels and default labels as in C.
|
|
|
|
|
|
|
|
|
|
switch ( $var )
|
|
|
|
|
case *.[1-9]:
|
|
|
|
|
case *.[1-9].gz:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "$var is a man-page."
|
|
|
|
|
breaksw
|
2017-07-16 23:16:01 +03:00
|
|
|
|
case *gz:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "$var is gzipped"
|
|
|
|
|
breaksw
|
2017-07-16 23:16:01 +03:00
|
|
|
|
default:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
file $var
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endsw
|
|
|
|
|
|
|
|
|
|
#### FOREACH-END
|
|
|
|
|
# Syntax:
|
|
|
|
|
# foreach name ( wordlist )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# ...
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# [break | continue]
|
|
|
|
|
# end
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Successively sets the variable `name` to each member of `wordlist` and
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# executes the sequence of commands between this command and the matching
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# `end` keyword. The `continue` keyword jumps to the next element back to
|
|
|
|
|
# top, and the `break` keyword terminates the loop.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# BUG: `foreach` doesn't ignore here documents when looking for its end.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# example: counting 1 to 10
|
|
|
|
|
foreach i ( `seq 1 10` )
|
|
|
|
|
echo $i
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# example: type all files in the list
|
|
|
|
|
foreach f ( a.txt b.txt c.txt )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
cat $f
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# example: convert wma to ogg
|
|
|
|
|
foreach f ( *.wma )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
ffmpeg -i "$f" "$f:r".ogg
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#### WHILE-END
|
|
|
|
|
# while ( expr )
|
|
|
|
|
# ...
|
|
|
|
|
# [break | continue]
|
|
|
|
|
# end
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Executes the commands between the `while` and the matching `end` while `expr`
|
|
|
|
|
# evaluates non-zero. `break` and `continue` may be used to terminate or
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# continue the loop prematurely.
|
|
|
|
|
|
|
|
|
|
# count from 1 to 10
|
|
|
|
|
set num = 1
|
|
|
|
|
while ( $num <= 10 )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo $num
|
|
|
|
|
@ num ++
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# print all directories of CWD
|
|
|
|
|
set lst = ( * )
|
|
|
|
|
while ( $#lst )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
if ( -d $lst[1] ) echo $lst[1] is directory
|
|
|
|
|
shift lst
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# separate command-line arguments to options or parameters
|
|
|
|
|
set options
|
|
|
|
|
set params
|
|
|
|
|
set lst = ( $* )
|
|
|
|
|
while ( $#lst )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
if ( "$lst[1]" =~ '-*' ) then
|
|
|
|
|
set options = ( $options $lst[1] )
|
|
|
|
|
else
|
|
|
|
|
set params = ( $params $lst[1] )
|
|
|
|
|
endif
|
|
|
|
|
shift lst
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
echo 'options =' $options
|
2017-08-23 11:14:39 +03:00
|
|
|
|
echo 'parameters =' $params
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
#### REPEAT
|
|
|
|
|
# Syntax: repeat count command
|
|
|
|
|
#
|
|
|
|
|
# The specified command, which is subject to the same restrictions as the
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# command in the one line `if` statement above, is executed count times.
|
|
|
|
|
# I/O redirections occur exactly once, even if `count` is 0.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# TIP: in most cases prefer `while`
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
repeat 3 echo "ding dong"
|
|
|
|
|
|
|
|
|
|
# --- Functions ---------------------------------------------------------------
|
|
|
|
|
# tcsh has no functions but its expression syntax is advanced enough to use
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# `alias` as functions. Another method is recursion
|
2017-07-16 23:16:01 +03:00
|
|
|
|
|
|
|
|
|
# Alias argument selectors; the ability to define an alias to take arguments
|
|
|
|
|
# supplied to it and apply them to the commands that it refers to.
|
|
|
|
|
# Tcsh is the only shell that provides this feature.
|
|
|
|
|
#
|
|
|
|
|
# \!# argument selector for all arguments, including the alias/command
|
|
|
|
|
# itself; arguments need not be supplied.
|
|
|
|
|
# \!* argument selector for all arguments, excluding the alias/command;
|
|
|
|
|
# arguments need not be supplied.
|
|
|
|
|
# \!$ argument selector for the last argument; argument need not be supplied,
|
|
|
|
|
# but if none is supplied, the alias name is considered to be the
|
|
|
|
|
# last argument.
|
|
|
|
|
# \!^ argument selector for first argument; argument MUST be supplied.
|
|
|
|
|
# \!:n argument selector for the nth argument; argument MUST be supplied;
|
|
|
|
|
# n=0 refers to the alias/command name.
|
|
|
|
|
# \!:m-n argument selector for the arguments from the mth to the nth;
|
|
|
|
|
# arguments MUST be supplied.
|
|
|
|
|
# \!:n-$ argument selector for the arguments from the nth to the last;
|
|
|
|
|
# at least argument n MUST be supplied.
|
|
|
|
|
|
|
|
|
|
# Alias the cd command so that when you change directories, the contents
|
|
|
|
|
# are immediately displayed.
|
|
|
|
|
alias cd 'cd \!* && ls'
|
|
|
|
|
|
|
|
|
|
# --- Recursion method --- begin ---
|
|
|
|
|
#!/bin/tcsh -f
|
|
|
|
|
set todo = option1
|
|
|
|
|
if ( $#argv > 0 ) then
|
2023-11-26 14:07:20 +03:00
|
|
|
|
set todo = $argv[1]
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
switch ( $todo )
|
|
|
|
|
case option1:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# ...
|
|
|
|
|
$0 results
|
|
|
|
|
breaksw
|
2017-07-16 23:16:01 +03:00
|
|
|
|
case option2:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# ...
|
|
|
|
|
$0 results
|
|
|
|
|
breaksw
|
2017-07-16 23:16:01 +03:00
|
|
|
|
case results:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "print the results here"
|
|
|
|
|
# ...
|
|
|
|
|
breaksw
|
2017-07-16 23:16:01 +03:00
|
|
|
|
default:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo "Unknown option: $todo"
|
|
|
|
|
# exit 0
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endsw
|
|
|
|
|
# --- Recursion method --- end ---
|
|
|
|
|
|
|
|
|
|
# --- examples ----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# this script prints available power-states if no argument is set;
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# otherwise it sets the state of the $argv[1]
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# --- power-state script --- begin --------------------------------------------
|
|
|
|
|
#!/bin/tcsh -f
|
|
|
|
|
# get parameter ("help" for none)
|
|
|
|
|
set todo = help
|
|
|
|
|
if ( $#argv > 0 ) then
|
2023-11-26 14:07:20 +03:00
|
|
|
|
set todo = $argv[1]
|
2017-07-16 23:16:01 +03:00
|
|
|
|
endif
|
|
|
|
|
# available options
|
|
|
|
|
set opts = `cat /sys/power/state`
|
|
|
|
|
# is known?
|
|
|
|
|
foreach o ( $opts )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
if ( $todo == $o ) then
|
|
|
|
|
# found; execute it
|
|
|
|
|
echo -n $todo > /sys/power/state
|
|
|
|
|
break
|
|
|
|
|
endif
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
# print help and exit
|
|
|
|
|
echo "usage: $0 [option]"
|
|
|
|
|
echo "available options on kernel: $opts"
|
|
|
|
|
# --- power-state script --- end ----------------------------------------------
|
|
|
|
|
|
|
|
|
|
# Guess the secret number game
|
|
|
|
|
# --- secretnum.csh --- begin -------------------------------------------------
|
|
|
|
|
#!/bin/tcsh -f
|
|
|
|
|
set secret=`shuf -i1-100 -n1`
|
|
|
|
|
echo "I have a secret number from 1 up to 100"
|
|
|
|
|
while ( 1 )
|
2023-11-26 14:07:20 +03:00
|
|
|
|
echo -n "Guess: "
|
|
|
|
|
set guess = $<
|
|
|
|
|
if ( $secret == $guess ) then
|
|
|
|
|
echo "You found it"
|
|
|
|
|
exit 1
|
|
|
|
|
else
|
|
|
|
|
if ( $secret > $guess ) then
|
|
|
|
|
echo "its greater"
|
|
|
|
|
else if ( $secret < $guess ) then
|
|
|
|
|
echo "its lesser"
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2017-07-16 23:16:01 +03:00
|
|
|
|
end
|
|
|
|
|
# --- secretnum.csh --- end ---------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
# Appendices
|
|
|
|
|
|
|
|
|
|
#### About [T]CSH:
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# * CSH is notorious for its bugs;
|
|
|
|
|
# * It is also famous for its advanced interactive mode.
|
|
|
|
|
# * TCSH is famous for having the most advanced completion subsystem.
|
|
|
|
|
# * TCSH is famous for having the most advanced aliases subsystem; aliases
|
|
|
|
|
# can take parameters and often be used as functions!
|
|
|
|
|
# * TCSH is well known and preferred by people (me too) because of better
|
|
|
|
|
# syntax. All shells are using Thomson's syntax with the exception of
|
|
|
|
|
# [t]csh, fish, and plan9's shells (rc, ex).
|
|
|
|
|
# * It is smaller and consumes far less memory than bash, zsh, and even mksh!
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# (memusage reports)
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# * TCSH still has bugs; fewer, but it does; if you write readable clean code
|
|
|
|
|
# you'll find none; well almost none... This has to do with the implementation
|
|
|
|
|
# of csh; that doesn't mean the other shells have a good implementation.
|
|
|
|
|
# * no well-known shell is capable of regular programming; if your script
|
|
|
|
|
# is getting big, use a programming language, like Python, PHP, or Perl (good
|
|
|
|
|
# scripting languages).
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# Advice:
|
|
|
|
|
# 1. Do not use redirection in single-line IFs (it is well documented bug)
|
|
|
|
|
# In most cases avoid using single-line IFs.
|
|
|
|
|
# 2. Do not mess up with other shells' code, c-shell is not compatible with
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# other shells and has different abilities and priorities.
|
|
|
|
|
# 3. Use spaces as you'll use them to write readable code in any language.
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# A bug of csh was `set x=1` and `set x = 1` worked, but `set x =1` did not!
|
|
|
|
|
# 4. It is well documented that numeric expressions require spaces in between;
|
|
|
|
|
# also parenthesize all bit-wise and unary operators.
|
|
|
|
|
# 5. Do not write a huge weird expression with several quotes, backslashes, etc
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# It is bad practice for generic programming, it is dangerous in any shell.
|
|
|
|
|
# 6. Help tcsh, report the bug here <https://bugs.gw.com/>
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# 7. Read the man page, `tcsh` has a huge number of options and variables.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
|
|
|
|
# I suggest the following options enabled by default
|
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
# Even in non-interactive shells
|
|
|
|
|
# set echo_style=both
|
|
|
|
|
# set backslash_quote
|
|
|
|
|
# set parseoctal
|
|
|
|
|
# unset noclobber
|
|
|
|
|
#
|
|
|
|
|
# Whatever...
|
|
|
|
|
# set inputmode=insert
|
|
|
|
|
# set autolist
|
|
|
|
|
# set listjobs
|
|
|
|
|
# set padhour
|
|
|
|
|
# set color
|
|
|
|
|
# set colorcat
|
|
|
|
|
# set nobeep
|
|
|
|
|
# set cdtohome
|
|
|
|
|
#
|
|
|
|
|
# set histdup
|
|
|
|
|
# set histlit
|
|
|
|
|
# set nohistclop
|
|
|
|
|
#
|
|
|
|
|
# unset compat_expr
|
|
|
|
|
# unset noglob
|
|
|
|
|
# unset autologout
|
|
|
|
|
# unset time
|
|
|
|
|
# unset tperiod
|
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# NOTE: If the `backslash_quote` is set, it may create compatibility issues
|
|
|
|
|
# with other tcsh scripts that were written without it.
|
2017-07-16 23:16:01 +03:00
|
|
|
|
#
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# NOTE: The same for `parseoctal`, but it is better to fix the problematic
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# scripts.
|
|
|
|
|
#
|
|
|
|
|
# NOTE: **for beginners only**
|
2023-11-26 14:07:20 +03:00
|
|
|
|
# This enables automatic rescanning of `path` directories if needed. (like bash)
|
2017-07-16 23:16:01 +03:00
|
|
|
|
# set autorehash
|
|
|
|
|
|
|
|
|
|
#### common aliases
|
|
|
|
|
# alias hist 'history 20'
|
|
|
|
|
# alias ll 'ls --color -lha'
|
|
|
|
|
# alias today "date '+%d%h%y'
|
|
|
|
|
# alias ff 'find . -name '
|
|
|
|
|
|
|
|
|
|
#### a nice prompt
|
|
|
|
|
# set prompt = "%B%{\033[35m%}%t %{\033[32m%}%n@%m%b %C4 %# "
|
|
|
|
|
```
|