ã¹ã¯ãªããã£ã³ã°æŠè«(ã·ã§ã«/ã·ã§ã«ã¹ã¯ãªãã)
ã€ã³ã¿ãã§ãŒã¹ã§ããã·ã§ã«ãš, åäœããã°ã©ã ã§ããã·ã§ã«ã¹ã¯ãªãããŸãšã.
ãŸãã¯, ç°¡åãªéåãç°¡æã¹ã¯ãªããã§ãã£ã€ãããããã¯ãŸãšã.
- ðã¿ã¹ã¯ã©ã³ããŒ: ã·ã§ã«ã¹ã¯ãªããã®å®è¡ç®¡ç.
- ð€AI shell completion
Basics
ðã·ã§ã«
ã³ã³ãã¥ãŒã¿äžã§ãŠãŒã¶ãšðOSãããåãããããã®ã€ã³ã¿ãã§ãŒã¹ãæäŸããããã°ã©ã .
ãã ã, äžè¬çã«ã¯ðã¿ãŒããã«ç°å¢ã§åäœããðCLIãæãããšãå€ã. ã³ãã³ãã©ã€ã³ã·ã§ã«ãšããã.
ããã«ããã°, ããšããšã¯UNIXã·ã§ã«ãã¡ãžã£ãŒã ã£ããã®ã®, ä»ã§ã¯Windowsã§ãMacOSã§ãLinuxã§ãUNIXã·ã§ã«ãæèŒããŠããã®ã§, UNIXã·ã§ã«ãæããŠã·ã§ã«ãšããããšãå€ãå°è±¡.
ðã·ã§ã«ã¹ã¯ãªãã
ã·ã§ã«ãèšè¿°ããããã®ã€ã³ã¿ããªã¿èšèª.
UNIXã·ã§ã«
æ±çšèšèª
- ð§Babashka(Clojure)
ðbash shell
é¢æ°
åŒæ°ã¯, 2 ã§åç §ã§ãã.
display () {
echo "This is a sample function"
}
ã³ãã³ã眮æ
â ãŸãã¯, $() ãå©çšãã.
$ cd /lib/modules/$(uname -r)/
åŒæ°
Parameter | Meaning |
---|---|
$0 | Script name |
$1 | First parameter |
3, etc. | Second, third parameter, etc. |
$* | All parameters |
$# | Number of arguments |
åŒæ°ãã§ãã¯
åŒæ°ã®æ°ããã§ãã¯
if [ $# != 1 ]; then
echo "usage: $0 file_path" 1>&2
exit 1
fi
ãã¡ã€ã«ããã£ã¬ã¯ããªãã¹ãååšããã
if [ -e ãã¹ ]; then
# ååšããå Žå
else
# ååšããªãå Žå
fi
Statements
if
In compact form, the syntax of an if statement is:
if TEST-COMMANDS; then CONSEQUENT-COMMANDS; fi
A more general definition is:
if condition
then # if condition; then
statements
else
statements
fi
-
condition
Condition Meaning -e file Check if the file exists. -d file Check if the file is a directory. -f file Check if the file is a regular file -s file Check if the file is of non-zero size. -g file Check if the file has sgid set. -u file Check if the file has suid set. -r file Check if the file is readable. -w file Check if the file is writable. -x file Check if the file is executable.
-
numerical tests
Operator Meaning -eq Equal to -ne Not equal to -gt Greater than -lt Less than -ge Greater than or equal to -le Less than or equal to
case
case expression in
pattern1) execute commands;;
pattern2) execute commands;;
pattern3) execute commands;;
pattern4) execute commands;;
* ) execute some default commands or nothing ;;
esac
for
for variable-name in list
do
execute one iteration for each item in the
list until the list is finished
done
-
ã³ãã³ãã©ã€ã³ããé£çªã®ãã©ã«ãäœæ
ãã®çšåºŠã¯ããã£ãšæžããããšããã ã.
% for i in `seq 1 18` > do > mkdir $i > done
while
while condition is true
do
Commands for execution
----
done
until
until condition is false
do
Commands for execution
----
done
ãã¡ã€ã«ã»ãã£ã¬ã¯ããªæäœ
$ fpath='/a/b/c.d.e'
# ãã¡ã€ã«åãåãåºã (æ¡åŒµåãã)
$ fname_ext="${fpath##*/}"
$ echo $fname_ext
c.d.e
# ãã¡ã€ã«åãåãåºã (æ¡åŒµåãªã)
$ fname="${fname_ext%.*}"
$ echo $fname
c.d
# æ¡åŒµåãåãåºã
$ fext="${fpath##*.}"
$ echo $fext
e
# ãã£ã¬ã¯ããªãåãåºã
$ fdir="${fpath%/*}"
$ echo $fdir
/a/b
æ¥ææäœ
`date xxx `ã§ãããã§å®è¡ãã.
DATE=`date -d "$1" '+%s'`
ãã©ãŒããã | ã³ãã³ã |
---|---|
yyyy/mm/dd | date â+%Y/%m/%dâ |
yyyy/mm/dd (Sun..Sat) | date â+%Y/%m/%d (%a)â |
yy/mm/dd | date â+%y/%m/%dâ |
yyyy-mm-dd | date â+%Fâ |
mm/dd/yy | date â+%Dâ |
hh:mm (24 æéå¶) | date â+%Râ |
hh:mm:ss (24 æéå¶) | date â+%Tâ |
hh:mm:ss AM PM (12 æéå¶) | date â+%râ |
temp ãã¡ã€ã«äœæ
- TEMP=$(mktemp /tmp/tempfile.XXXXXXXX) To create a temporary file
- TEMPDIR=$(mktemp -d /tmp/tempdir.XXXXXXXX) To create a temporary directory
String
- ${string:0:1} ã®ããã«æžããš, 0-1 æåç®ãæãã ã.
- ${#abc}ã®ããã«æžããš, æåæ°ãæãã ã.
- [ string1 == string2 ] æååã®æ¯èŒ.
Debug
- set -x # turns on debugging
- set +x # turns off debugging
å ¥ååŸ ã¡
read ãå©çšãã.
#!/bin/bash
while read KEY
do
case $KEY in
"boy" )
echo Hey,boy!!
break;;
"girl" )
echo Hey,girl!!
break;;
*)
echo Typing boy or girl;;
esac
done
ðfish shell
æã®èšäº. ããããããæè¡ã¯æéãçµã€ãšé¢šåãããã⊠blogã«ã¯äžåããªæ°ããã, wikiã«æžããŠæŽæ°ããã»ãããã.
- ããã©ã«ãèšå®ã§åŒ·åã«äŸ¿å©ïŒzsh ãã fish ã«ä¹ãæãããŸãšã | Futurismo
- fish ãŠãŒã¶ãªãå ¥ããŠãããããã©ã°ã€ã³ 13 éž | Futurismo
ãã°ã€ã³ã·ã§ã«ãbashã®ãŸãŸfishãã€ãã
ãããã«è»¢ãã£ãŠãã¹ããããã¯fishã§ã¯ãªãbashãã»ãšãã©ãªã®ã§, èµ·åã®éäžãŸã§ã¯bashã§, ã€ã³ã¿ã©ã¯ãã£ãã·ã§ã«ã®å©çšæã®ã¿fishã«ããã.
以äžã .bashrcã®åé ã«æžã.
# If not running interactively, don't do anything
case $- in
*i*) exec fish;;
*) return;;
esac
ref. ãã°ã€ã³ã·ã§ã«ã¯ bash ã®ãŸãŸ fish ãå©çšãã - Qiita
bash exportã®fishã®æžãæ¹
ãããããã¡ãã. ChatGPTã«äžžæãã§ããããã.
# bash
export PATH="/home/tsu-nera/.local/share/solana/install/active_release/bin:$PATH"
# fish
set -gx PATH "/home/tsu-nera/.local/share/solana/install/active_release/bin" $PATH
ããã¹ãæŽåœ¢
ð§sed
-
sed ã® i ãªãã·ã§ã³ãªãã§çœ®æãå®è¡ããŠã¿ãŠ, åé¡ããªãã確èª
-
sed ã« i ãªãã·ã§ã³ãã€ããŠå®è¡
æåå眮æ
$ find . -type f | xargs sed -i -e "s/url: \/archives\/=/url: \/archives\//g"
ãããã®æ¿å ¥
sed -i '1s/^/test\n/' filename
sed -i '1i\test' filename
wiki ã«ããããæ¿å ¥ãã
find . -name "*.org" -exec sed -i '1i\#+OPTIONS: toc:nil' {} \;
find
-exec ãš xargs ã®éã
- exec ã¯åè¡ã«ããããŠåŠçãå®æœããã.
- args ã¯ãã¹ãŠã®è¡ã«ããããŠåŠçãå®æœããã.
find . -name "*.txt" -exec wc -l {} \;
find . -name "*.txt" | xargs wc -l
-type f ã§ãã¡ã€ã«ã®ã¿. ãã£ã¬ã¯ããªç¡èŠ.
ã·ã§ã«èž
â ãã°ã€ã³ã·ã§ã«ãå€æŽãã(chsh)
chsh ã³ãã³ããå©çšãã. èŠãæ¹ã¯chenge shell.
$ chsh -s /usr/bin/fish