UNIX/基礎知識/エスケープキャラクタ
Table of Contents |
% ls *.html
% ls \*.html
% ls "*.html"
% ls '*.html'
% rm "(null).txt" % rm "a b" % rm "-e"
% ls -i
% find . -inum [i-node_No] | xargs rm
% rm -i *
rm "日本語"
% sh test.sh
touch "日本語"
% grep [filename] ".*\.txt"
\.
% echo "$USER*"
s1080134*
% echo '$USER*'
$USER*