GreensnoWorld
记录点滴,分享乐趣,一块凝固的时间
Linux  2020年12月28日
#!/bin/sh # Very sample example shell script for managing a CD collection. menu_choice="" current_cd="" title_file="t...
Linux  2020年12月18日
#!/bin/sh # Ask some questions and collect the answer dialog --title "Questionnaire" --msgbox "Welcome to my simple s...
Linux  2020年6月26日
2. 创建桌面图标:在 /usr/share/applications/ 路径下,创建 xxx.desktop 文件,文件内容格式如下 [Desktop Entry] Name=xxx GenericName=xxx xxx Comme...
Linux  2019年12月14日
1. Load mod_deflate, mod_headers, mod_filter: LoadModule deflate_module modules/mod_deflate.so LoadModule headers_modu...
Linux  2019年11月21日
$ cd /usr/local/src/ $ wget http://pecl.php.net/get/redis-5.1.1.tgz $ tar xzvf redis-5.1.1.tgz $ cd redis-5.1.1 $ /us...
Linux  2019年11月21日
$ cd /usr/local/src/ $ wget http://download.redis.io/releases/redis-5.0.7.tar.gz $ tar xzf redis-5.0.7.tar.gz $ mv red...
Linux  2017年3月22日
备份数据库,并删除七日之前的备份,只保留七日之内的备份数据。 #!/bin/bash db_user="user" db_pwd="password" for db in "db1" "db2" do cd "/back...
留言